From 9781565d170a4d96bb8fd655fea2c1baac6202bb Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Fri, 5 Aug 2022 11:25:20 +0800 Subject: [PATCH 01/28] =?UTF-8?q?feat:=20textfield=E5=A2=9E=E5=8A=A0type?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- .../base/src/condition-attribute-with-id.ts | 47 +++ packages/help-text/.npmignore | 2 + packages/help-text/CHANGELOG.md | 56 ++++ packages/help-text/README.md | 89 ++++++ packages/help-text/help-text-mixin.md | 275 ++++++++++++++++++ packages/help-text/package.json | 65 +++++ packages/help-text/sp-help-text.ts | 22 ++ packages/help-text/src/HelpText.ts | 56 ++++ .../help-text/src/HelpTextManagedElement.ts | 21 ++ packages/help-text/src/HelpTextManager.ts | 121 ++++++++ packages/help-text/src/help-text.css | 14 + packages/help-text/src/index.ts | 14 + packages/help-text/src/manage-help-text.ts | 42 +++ packages/help-text/src/spectrum-config.js | 74 +++++ packages/help-text/src/spectrum-help-text.css | 235 +++++++++++++++ packages/help-text/src/vars.css | 27 ++ .../stories/help-text-sizes.stories.ts | 53 ++++ .../help-text/stories/help-text.stories.ts | 133 +++++++++ .../help-text/test/benchmark/basic-test.ts | 20 ++ packages/help-text/test/help-text.test.ts | 53 ++++ packages/help-text/tsconfig.json | 10 + packages/textfield/src/Textfield.ts | 20 +- .../textfield/stories/textfield.stories.ts | 18 ++ tasks/test-changes.js | 2 +- test/testing-helpers.ts | 16 + 26 files changed, 1484 insertions(+), 3 deletions(-) create mode 100644 packages/base/src/condition-attribute-with-id.ts create mode 100644 packages/help-text/.npmignore create mode 100644 packages/help-text/CHANGELOG.md create mode 100644 packages/help-text/README.md create mode 100644 packages/help-text/help-text-mixin.md create mode 100644 packages/help-text/package.json create mode 100644 packages/help-text/sp-help-text.ts create mode 100644 packages/help-text/src/HelpText.ts create mode 100644 packages/help-text/src/HelpTextManagedElement.ts create mode 100644 packages/help-text/src/HelpTextManager.ts create mode 100644 packages/help-text/src/help-text.css create mode 100644 packages/help-text/src/index.ts create mode 100644 packages/help-text/src/manage-help-text.ts create mode 100644 packages/help-text/src/spectrum-config.js create mode 100644 packages/help-text/src/spectrum-help-text.css create mode 100644 packages/help-text/src/vars.css create mode 100644 packages/help-text/stories/help-text-sizes.stories.ts create mode 100644 packages/help-text/stories/help-text.stories.ts create mode 100644 packages/help-text/test/benchmark/basic-test.ts create mode 100644 packages/help-text/test/help-text.test.ts create mode 100644 packages/help-text/tsconfig.json diff --git a/package.json b/package.json index b83fd08dd67..476d592ca67 100644 --- a/package.json +++ b/package.json @@ -234,7 +234,7 @@ "@web/storybook-prebuilt": "0.1.27-alpha.0", "cssnano/**/postcss-calc": "7.0.0" }, - "customElements": "projects/documentation/custom-elements.json", + "customElements": ".storybook/custom-elements.json", "maintainers": [ { "name": "saiye", diff --git a/packages/base/src/condition-attribute-with-id.ts b/packages/base/src/condition-attribute-with-id.ts new file mode 100644 index 00000000000..c218f93a4a5 --- /dev/null +++ b/packages/base/src/condition-attribute-with-id.ts @@ -0,0 +1,47 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +export function conditionAttributeWithoutId( + el: HTMLElement, + attribute: string, + ids: string[] +): void { + const ariaDescribedby = el.getAttribute(attribute); + let descriptors = ariaDescribedby ? ariaDescribedby.split(/\s+/) : []; + descriptors = descriptors.filter( + (descriptor) => !ids.find((id) => descriptor === id) + ); + if (descriptors.length) { + el.setAttribute(attribute, descriptors.join(' ')); + } else { + el.removeAttribute(attribute); + } +} + +export function conditionAttributeWithId( + el: HTMLElement, + attribute: string, + id: string | string[] +): () => void { + const ids = Array.isArray(id) ? id : [id]; + const ariaDescribedby = el.getAttribute(attribute); + const descriptors = ariaDescribedby ? ariaDescribedby.split(/\s+/) : []; + const hadIds = ids.every((id) => descriptors.indexOf(id) > -1); + if (hadIds) + return (): void => { + return; + }; + descriptors.push(...ids); + el.setAttribute(attribute, descriptors.join(' ')); + return () => conditionAttributeWithoutId(el, attribute, ids); +} diff --git a/packages/help-text/.npmignore b/packages/help-text/.npmignore new file mode 100644 index 00000000000..c50cbe188c0 --- /dev/null +++ b/packages/help-text/.npmignore @@ -0,0 +1,2 @@ +stories +test \ No newline at end of file diff --git a/packages/help-text/CHANGELOG.md b/packages/help-text/CHANGELOG.md new file mode 100644 index 00000000000..69ccf0c76ed --- /dev/null +++ b/packages/help-text/CHANGELOG.md @@ -0,0 +1,56 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## [0.1.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/help-text@0.1.10...@iliad-ui/help-text@0.1.11) (2022-08-04) + +**Note:** Version bump only for package @iliad-ui/help-text + +## [0.1.10](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/help-text@0.1.9...@iliad-ui/help-text@0.1.10) (2022-07-18) + +**Note:** Version bump only for package @iliad-ui/help-text + +## [0.1.9](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/help-text@0.1.8...@iliad-ui/help-text@0.1.9) (2022-06-29) + +**Note:** Version bump only for package @iliad-ui/help-text + +## [0.1.8](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/help-text@0.1.7...@iliad-ui/help-text@0.1.8) (2022-06-07) + +**Note:** Version bump only for package @iliad-ui/help-text + +## [0.1.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/help-text@0.1.6...@iliad-ui/help-text@0.1.7) (2022-05-27) + +**Note:** Version bump only for package @iliad-ui/help-text + +## [0.1.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/help-text@0.1.5...@iliad-ui/help-text@0.1.6) (2022-05-12) + +**Note:** Version bump only for package @iliad-ui/help-text + +## [0.1.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/help-text@0.1.4...@iliad-ui/help-text@0.1.5) (2022-04-21) + +**Note:** Version bump only for package @iliad-ui/help-text + +## [0.1.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/help-text@0.1.3...@iliad-ui/help-text@0.1.4) (2022-03-08) + +**Note:** Version bump only for package @iliad-ui/help-text + +## [0.1.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/help-text@0.1.2...@iliad-ui/help-text@0.1.3) (2022-03-04) + +**Note:** Version bump only for package @iliad-ui/help-text + +## [0.1.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/help-text@0.1.1...@iliad-ui/help-text@0.1.2) (2022-02-22) + +### Bug Fixes + +- **dialog:** updates for delivering dialog content accessibly ([f0ed33c](https://github.com/adobe/iliad-ui/commit/f0ed33c3351ae9bc2017202ede8cf206fbf395c2)) + +## [0.1.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/help-text@0.1.0...@iliad-ui/help-text@0.1.1) (2022-01-26) + +**Note:** Version bump only for package @iliad-ui/help-text + +# 0.1.0 (2021-12-13) + +### Features + +- add Help Text pattern ([fdbb812](https://github.com/adobe/iliad-ui/commit/fdbb812e05a1202e5b5912a5e93cfba59a3dae9e)) diff --git a/packages/help-text/README.md b/packages/help-text/README.md new file mode 100644 index 00000000000..2e44024eb6a --- /dev/null +++ b/packages/help-text/README.md @@ -0,0 +1,89 @@ +## Description + +An `` provides either an informative description or an error message that gives more context about what a user needs to input. It's commonly used in forms. + +### Usage + +[![See it on NPM!](https://img.shields.io/npm/v/@iliad-ui/help-text?style=for-the-badge)](https://www.npmjs.com/package/@iliad-ui/help-text) +[![How big is this package in your project?](https://img.shields.io/bundlephobia/minzip/@iliad-ui/help-text?style=for-the-badge)](https://bundlephobia.com/result?p=@iliad-ui/help-text) + +``` +yarn add @iliad-ui/help-text +``` + +Import the side effectful registration of `` via: + +``` +import '@iliad-ui/help-text/sp-help-text.js'; +``` + +When looking to leverage the `HelpText` base class as a type and/or for extension purposes, do so via: + +``` +import { HelpText } from '@iliad-ui/help-text'; +``` + +## Sizes + + +Small + + +```html +Passwords must be at least 8 characters. +``` + + +Medium + + +```html +Passwords must be at least 8 characters. +``` + + +Large + + +```html +Passwords must be at least 8 characters. +``` + + +Extra Large + + +```html +Passwords must be at least 8 characters. +``` + + + + +## Negative + +The negative variant of `` is used to convey error messages. An error message should be different than the informative message otherwise delivers to the visitor and should show a solution for correcting the error that has been encountered. + +```html + + Create a password with at least 8 characters. + +``` + +### Icon + +When associated with content that does not supply an icon outlining the presence of an error, use the `icon` attribute to display one as part of the `` element. + +```html + + Create a password with at least 8 characters. + +``` + +## Disabled + +When associated to content the is disabled, use the `disabled` attribute to match the delivery of the `` element to that content. + +```html +Passwords must be at least 8 characters. +``` diff --git a/packages/help-text/help-text-mixin.md b/packages/help-text/help-text-mixin.md new file mode 100644 index 00000000000..b792299ee57 --- /dev/null +++ b/packages/help-text/help-text-mixin.md @@ -0,0 +1,275 @@ +## Description + +It is [not currently possible](https://w3c.github.io/webcomponents-cg/#cross-root-aria) to provide accessible ARIA references between elements in different shadow roots. When creating your own components, use the `ManageHelpText` mixin to associate slotted `` elements with the elements they describe. This functionality is also surfaced as a base class `HelpTextManagedElement` if you prefer to extend from there, instead. + +Spectrum Web Components leverages the `ManageHelpText` mixin to power elements like `sp-field-group`, `sp-number-field`, `sp-radio-group`, `sp-search` and `sp-textfield`. + +### Usage + +[![See it on NPM!](https://img.shields.io/npm/v/@iliad-ui/help-text?style=for-the-badge)](https://www.npmjs.com/package/@iliad-ui/help-text) +[![How big is this package in your project?](https://img.shields.io/bundlephobia/minzip/@iliad-ui/help-text?style=for-the-badge)](https://bundlephobia.com/result?p=@iliad-ui/help-text) + +``` +yarn add @iliad-ui/help-text +``` + +Import `ManageHelpText` via: + +``` +import { ManageHelpText } from '@iliad-ui/help-text/mange-help-text.js'; +``` + +When looking to leverage the `HelpTextManagedElement` base class as a type and/or for extension purposes, do so via: + +``` +import { HelpTextManagedElement } from '@iliad-ui/help-text/HelpTextManagedElement.js'; +``` + +The `HelpTextManager` class is also available for import as: + +``` +import { HelpTextManager } from '@iliad-ui/help-text/HelpTextManager.js'; +``` + +## ManageHelpText mixin + +`ManageHelpText` mixes two properties into your class: + +- `helpTextId`: the `id` attribute of the associated `` +- `renderHelpText(negative?: boolean)`: a method that returns a `TemplateResult` with the `help-text` and `negative-help-text` slots + +## Internal + +To describe an element within your custom element's shadow root, use `mode: 'internal'` (the default) and set `aria-describedby` on the target element: + +```js +import { SpectrumElement, html } from '@iliad-ui/base'; +import { ManageHelpText } from '@iliad-ui/help-text/src/manage-hep-text.js'; + +export class MyElement extends ManageHelpText(SpectrumElement) { + invalid = false; + + render() { + return html` + + ${this.renderHelpText(this.invalid)} + `; + } +} +``` + +## External + +To describe the custom element itself, use `mode: 'external'`. This will automatically manage the application of the `aria-describedby` atribute on `MyElement`: + +```js +import { SpectrumElement, html } from '@iliad-ui/base'; +import { ManageHelpText } from '@iliad-ui/help-text/src/manage-help-text.js'; + +export class MyElement extends ManageHelpText(SpectrumElement, { + mode: 'external', +}) { + invalid = false; + + render() { + return html` + ${this.renderHelpText(this.invalid)} + `; + } +} +``` + +This functionality is powered by the `HelpTextManager` class which is also exported from this package and can be leveraged directly. It accepts the root element on which it will manage help text and an options object that accepts the `mode` by which that help text will be managed at construction time. Leveraged at render time, it surfaces an `id` property and a `render(invalid?: boolean)` method for use in your template. + +## Usage with self-managed validity + +Spectrum Web Components that have an `invalid` attribute, like `` and ``, automatically render either the `help-text` or `negative-help-text` slot based on validity. Provide both, and the appropriate `` element will be surfaced: + + +Field group + + +```html +What are your favorite fruits? + + Apple + + Lettuce + + Strawberry + One of these is not a fruit. + + Choose actual fruit(s). + + +``` + + +Radio group + + +```html + + What is your favorite ice cream flavor? + + + Vanilla + Chocolate + Strawberry + I don't like ice cream + Everyone likes ice cream. + + You can't not like ice cream. + + +``` + + +Textarea + + +```html +Stay "Positive" + + + Tell us how you are feeling today. + + Please be "Positive". + +``` + + +Textfield + + +```html +Stay "Positive" + + + Tell us how you are feeling today. + + Please be "Positive". + +``` + + + + +## Usage with validity managed from above + +When the parent element does not manage its own validity, or you would prefer to leverage the parent application in deciding what content and when to deliver within your `` element, place your content in the `help-text` slot to ensure that it is available for receiving stateful content/properties across the lifecycle of the parent element in question. + + +Field group + + +```html +What are your favorite fruits? + + Apple + + Lettuce + + Strawberry + One of these is not a fruit. + +``` + + +Radio group + + +```html + + What is your favorite ice cream flavor? + + + Vanilla + Chocolate + Strawberry + I don't like ice cream + Everyone likes ice cream. + +``` + + +Textarea + + +```html +Stay "Positive" + + + Tell us how you're feeling today. + + +``` + + +Textfield + + +```html +Stay "Positive" + + + Tell us how you are feeling today. + + +``` + + + diff --git a/packages/help-text/package.json b/packages/help-text/package.json new file mode 100644 index 00000000000..6e063442553 --- /dev/null +++ b/packages/help-text/package.json @@ -0,0 +1,65 @@ +{ + "name": "@iliad-ui/help-text", + "version": "0.1.11", + "publishConfig": { + "access": "public" + }, + "description": "", + "license": "Apache-2.0", + "repository": { + "type": "git", + "url": "https://github.com/gaoding-inc/iliad-ui.git", + "directory": "packages/help-text" + }, + "author": "", + "homepage": "https://adobe.github.io/iliad-ui/components/help-text", + "bugs": { + "url": "https://github.com/adobe/iliad-ui/issues" + }, + "main": "src/index.js", + "module": "src/index.js", + "type": "module", + "exports": { + "./src/*": "./src/*", + "./package.json": "./package.json", + "./help-text-manager": "./src/help-text-manager.js", + "./help-text-manager.js": "./src/help-text-manager.js", + "./HelpTextManager": "./src/HelpTextManager.js", + "./HelpTextManager.js": "./src/HelpTextManager.js", + "./sp-help-text": "./sp-help-text.js", + "./sp-help-text.js": "./sp-help-text.js" + }, + "scripts": { + "test": "echo \"Error: run tests from mono-repo root.\" && exit 1" + }, + "files": [ + "**/*.d.ts", + "**/*.js", + "**/*.js.map", + "custom-elements.json", + "!stories/", + "!test/" + ], + "keywords": [ + "spectrum css", + "web components", + "lit-element", + "lit-html" + ], + "dependencies": { + "@iliad-ui/base": "^0.6.0", + "@iliad-ui/icons-workflow": "^0.8.12", + "tslib": "^2.0.0" + }, + "types": "./src/index.d.ts", + "customElements": "custom-elements.json", + "maintainers": [ + { + "name": "saiye", + "email": "saiye@gaoding.com" + } + ], + "sideEffects": [ + "./sp-*.js" + ] +} diff --git a/packages/help-text/sp-help-text.ts b/packages/help-text/sp-help-text.ts new file mode 100644 index 00000000000..285bf4142f7 --- /dev/null +++ b/packages/help-text/sp-help-text.ts @@ -0,0 +1,22 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { HelpText } from './src/HelpText.js'; + +customElements.define('sp-help-text', HelpText); + +declare global { + interface HTMLElementTagNameMap { + 'sp-help-text': HelpText; + } +} diff --git a/packages/help-text/src/HelpText.ts b/packages/help-text/src/HelpText.ts new file mode 100644 index 00000000000..ae7cf38ebea --- /dev/null +++ b/packages/help-text/src/HelpText.ts @@ -0,0 +1,56 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { + CSSResultArray, + html, + nothing, + SizedMixin, + SpectrumElement, + TemplateResult, +} from '@iliad-ui/base'; +import { property } from '@iliad-ui/base/src/decorators.js'; +import '@iliad-ui/icons-workflow/icons/sp-icon-alert.js'; + +import styles from './help-text.css.js'; + +type HelpTextVariants = 'neutral' | 'negative'; + +/** + * @element sp-help-text + */ +export class HelpText extends SizedMixin(SpectrumElement) { + public static override get styles(): CSSResultArray { + return [styles]; + } + + @property({ type: Boolean, reflect: true }) + public icon = false; + + /** + * The visual variant to apply to this help text. + */ + @property({ reflect: true }) + public variant: HelpTextVariants = 'neutral'; + + protected override render(): TemplateResult { + return html` + ${this.variant === 'negative' && this.icon + ? html` + + ` + : nothing} +
+ `; + } +} diff --git a/packages/help-text/src/HelpTextManagedElement.ts b/packages/help-text/src/HelpTextManagedElement.ts new file mode 100644 index 00000000000..be2e9c4f59e --- /dev/null +++ b/packages/help-text/src/HelpTextManagedElement.ts @@ -0,0 +1,21 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { SpectrumElement } from '@iliad-ui/base'; +import { ManageHelpText } from './manage-help-text.js'; + +/** + * @slot help-text - default or non-negative help text to associate to your form element + * @slot negative-help-text - negative help text to associate to your form element when `invalid` + */ +export class HelpTextManagedElement extends ManageHelpText(SpectrumElement) {} diff --git a/packages/help-text/src/HelpTextManager.ts b/packages/help-text/src/HelpTextManager.ts new file mode 100644 index 00000000000..20b16bba9ad --- /dev/null +++ b/packages/help-text/src/HelpTextManager.ts @@ -0,0 +1,121 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { ifDefined } from '@iliad-ui/base/src/directives.js'; +import { conditionAttributeWithId } from '@iliad-ui/base/src/condition-attribute-with-id.js'; +import type { HelpText } from './HelpText'; + +export class HelpTextManager { + private conditionId?: () => void; + private host!: HTMLElement; + public id!: string; + private mode: 'internal' | 'external' = 'internal'; + private previousTabindex?: -1 | 0 | undefined; + private helpTextElement!: Element; + private get isInternal(): boolean { + return this.mode === 'internal'; + } + + static instanceCount = 0; + instanceCount: number; + + constructor( + host: HTMLElement, + { mode }: { mode: 'internal' | 'external' } = { mode: 'internal' } + ) { + this.host = host; + this.instanceCount = HelpTextManager.instanceCount++; + this.id = `sp-help-text-${this.instanceCount}`; + this.mode = mode; + } + + public render(negative?: boolean): TemplateResult { + // `pass-through-help-text-${this.instanceCount}` makes the slot effectively unreachable from + // the outside allowing the `help-text` slot to be preferred while `negative === false`. + return html` +
+ + + +
+ `; + } + + private addId(): void { + const id = this.helpTextElement ? this.helpTextElement.id : this.id; + this.conditionId = conditionAttributeWithId( + this.host, + 'aria-describedby', + id + ); + if (this.host.hasAttribute('tabindex')) { + this.previousTabindex = parseFloat( + this.host.getAttribute('tabindex') as string + ) as -1 | 0; + } + this.host.tabIndex = 0; + } + + private removeId(): void { + if (this.conditionId) { + this.conditionId(); + delete this.conditionId; + } + if (this.helpTextElement) return; + if (this.previousTabindex) { + this.host.tabIndex = this.previousTabindex; + } else { + this.host.removeAttribute('tabindex'); + } + } + + private handleSlotchange = ({ + target, + }: Event & { target: HTMLSlotElement }): void => { + this.handleHelpText(target); + this.handleNegativeHelpText(target); + }; + + private handleHelpText(target: HTMLSlotElement): void { + if (this.isInternal) return; + + if (this.helpTextElement && this.helpTextElement.id === this.id) { + this.helpTextElement.removeAttribute('id'); + } + this.removeId(); + const assignedElements = target.assignedElements(); + const nextHelpTextElement = assignedElements[0]; + this.helpTextElement = nextHelpTextElement; + if (nextHelpTextElement) { + if (!nextHelpTextElement.id) { + nextHelpTextElement.id = this.id; + } + this.addId(); + } + } + + private handleNegativeHelpText(target: HTMLSlotElement): void { + if (target.name !== 'negative-help-text') return; + + const assignedElements = target.assignedElements(); + assignedElements.forEach( + (el) => ((el as unknown as HelpText).variant = 'negative') + ); + } +} diff --git a/packages/help-text/src/help-text.css b/packages/help-text/src/help-text.css new file mode 100644 index 00000000000..56d38940d10 --- /dev/null +++ b/packages/help-text/src/help-text.css @@ -0,0 +1,14 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +@import './spectrum-help-text.css'; diff --git a/packages/help-text/src/index.ts b/packages/help-text/src/index.ts new file mode 100644 index 00000000000..1f7f0434237 --- /dev/null +++ b/packages/help-text/src/index.ts @@ -0,0 +1,14 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +export * from './HelpText.js'; diff --git a/packages/help-text/src/manage-help-text.ts b/packages/help-text/src/manage-help-text.ts new file mode 100644 index 00000000000..9fac8b781d6 --- /dev/null +++ b/packages/help-text/src/manage-help-text.ts @@ -0,0 +1,42 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { ReactiveElement, TemplateResult } from '@iliad-ui/base'; +import { HelpTextManager } from './HelpTextManager.js'; + +type Constructor> = { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + new (...args: any[]): T; + prototype: T; +}; + +export interface HelpTextElementInterface { + renderHelpText(negative?: boolean): TemplateResult; + helpTextId: string; +} + +export function ManageHelpText>( + constructor: T, + { mode }: { mode: 'internal' | 'external' } = { mode: 'internal' } +): T & Constructor { + class HelpTextElement extends constructor { + helpTextManager = new HelpTextManager(this, { mode }); + get helpTextId(): string { + return this.helpTextManager.id; + } + renderHelpText(negative?: boolean): TemplateResult { + return this.helpTextManager.render(negative); + } + } + return HelpTextElement; +} diff --git a/packages/help-text/src/spectrum-config.js b/packages/help-text/src/spectrum-config.js new file mode 100644 index 00000000000..cb81f05cf18 --- /dev/null +++ b/packages/help-text/src/spectrum-config.js @@ -0,0 +1,74 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +const config = { + spectrum: 'helptext', + components: [ + { + name: 'help-text', + host: { + selector: '.spectrum-HelpText', + }, + attributes: [ + { + type: 'boolean', + name: 'disabled', + selector: '.is-disabled', + }, + { + type: 'enum', + name: 'variant', + values: [ + '.spectrum-HelpText--neutral', + '.spectrum-HelpText--negative', + ], + }, + { + type: 'enum', + name: 'size', + forceOntoHost: true, + values: [ + { + name: 's', + selector: '.spectrum-HelpText--sizeS', + }, + { + name: 'm', + selector: '.spectrum-HelpText--sizeM', + }, + { + name: 'l', + selector: '.spectrum-HelpText--sizeL', + }, + { + name: 'xl', + selector: '.spectrum-HelpText--sizeXL', + }, + ], + }, + ], + classes: [ + { + selector: '.spectrum-HelpText-text', + name: 'text', + }, + { + selector: '.spectrum-HelpText-validationIcon', + name: 'icon', + }, + ], + }, + ], +}; + +export default config; diff --git a/packages/help-text/src/spectrum-help-text.css b/packages/help-text/src/spectrum-help-text.css new file mode 100644 index 00000000000..efe5eea4a66 --- /dev/null +++ b/packages/help-text/src/spectrum-help-text.css @@ -0,0 +1,235 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +:host { + color: var(--spectrum-helptext-content-color-default); + display: flex; + font-size: var(--spectrum-helptext-font-size); + min-height: var(--spectrum-helptext-min-height); +} + +:host(:lang(ja)), +:host(:lang(ko)), +:host(:lang(zh)) { + --spectrum-helptext-cjk-line-height: var(--spectrum-CJK-line-height-100); +} + +.icon { + flex-shrink: 0; + height: var(--mod-helptext-icon-size, var(--spectrum-helptext-icon-size)); + margin-inline-end: var( + --mod-helptext-text-to-visual, + var(--spectrum-helptext-text-to-visual) + ); + padding-block-end: var( + --mod-helptext-bottom-to-workflow-icon, + var(--spectrum-helptext-bottom-to-workflow-icon) + ); + padding-block-start: var( + --mod-helptext-top-to-workflow-icon, + var(--spectrum-helptext-top-to-workflow-icon) + ); + width: var(--mod-helptext-icon-size, var(--spectrum-helptext-icon-size)); +} + +.text { + line-height: var( + --mod-helptext-line-height, + var(--spectrum-helptext-line-height) + ); + padding-block-end: var( + --mod-helptext-bottom-to-text, + var(--spectrum-helptext-bottom-to-text) + ); + padding-block-start: var( + --mod-helptext-top-to-text, + var(--spectrum-helptext-top-to-text) + ); +} + +:host(:lang(ja)) .text, +:host(:lang(ko)) .text, +:host(:lang(zh)) .text { + line-height: var( + --mod-helptext-cjk-line-height, + var(--spectrum-helptext-cjk-line-height) + ); +} + +:host([variant='neutral']) { + --spectrum-helptext-content-color-default: var( + --spectrum-neutral-subdued-content-color-default + ); + --spectrum-helptext-icon-color-default: var( + --spectrum-neutral-subdued-content-color-default + ); +} + +:host([variant='negative']) { + --spectrum-helptext-content-color-default: var( + --spectrum-negative-content-color + ); + --spectrum-helptext-icon-color-default: var( + --spectrum-negative-content-color + ); +} + +:host([variant='neutral']) .text { + color: var( + --highcontrast-helptext-content-color-default, + var( + --mod-helptext-content-color-default, + var(--spectrum-helptext-content-color-default) + ) + ); +} + +:host([variant='neutral']) .icon { + color: var( + --highcontrast-helptext-icon-color-default, + var( + --mod-helptext-icon-color-default, + var(--spectrum-helptext-icon-color-default) + ) + ); +} + +:host([variant='negative']) .text { + color: var( + --highcontrast-helptext-content-color-default, + var( + --mod-helptext-content-color-default, + var(--spectrum-helptext-content-color-default) + ) + ); +} + +:host([variant='negative']) .icon { + color: var( + --highcontrast-helptext-icon-color-default, + var( + --mod-helptext-icon-color-default, + var(--spectrum-helptext-icon-color-default) + ) + ); +} + +:host([disabled]) { + --spectrum-helptext-content-color-default: var( + --spectrum-helptext-disabled-content-color + ); + --spectrum-helptext-icon-color-default: var( + --spectrum-helptext-disabled-content-color + ); +} + +:host([disabled]) .text { + color: var( + --highcontrast-helptext-content-color-default, + var( + --mod-helptext-content-color-default, + var(--spectrum-helptext-content-color-default) + ) + ); +} + +:host([disabled]) .icon { + color: var( + --highcontrast-helptext-icon-color-default, + var( + --mod-helptext-icon-color-default, + var(--spectrum-helptext-icon-color-default) + ) + ); +} + +:host([size='s']) { + --spectrum-helptext-min-height: var(--spectrum-component-height-75); + --spectrum-helptext-icon-size: var(--spectrum-workflow-icon-size-75); + --spectrum-helptext-font-size: var(--spectrum-font-size-75); + --spectrum-helptext-text-to-visual: var(--spectrum-text-to-visual-75); + --spectrum-helptext-top-to-workflow-icon: var( + --spectrum-help-text-top-to-workflow-icon-small + ); + --spectrum-helptext-bottom-to-workflow-icon: var( + --spectrum-helptext-top-to-workflow-icon + ); + --spectrum-helptext-top-to-text: var(--spectrum-component-top-to-text-75); + --spectrum-helptext-bottom-to-text: var( + --spectrum-component-bottom-to-text-75 + ); +} + +:host([size='m']) { + --spectrum-helptext-min-height: var(--spectrum-component-height-75); + --spectrum-helptext-icon-size: var(--spectrum-workflow-icon-size-100); + --spectrum-helptext-font-size: var(--spectrum-font-size-75); + --spectrum-helptext-text-to-visual: var(--spectrum-text-to-visual-75); + --spectrum-helptext-top-to-workflow-icon: var( + --spectrum-help-text-top-to-workflow-icon-medium + ); + --spectrum-helptext-bottom-to-workflow-icon: var( + --spectrum-helptext-top-to-workflow-icon + ); + --spectrum-helptext-top-to-text: var(--spectrum-component-top-to-text-75); + --spectrum-helptext-bottom-to-text: var( + --spectrum-component-bottom-to-text-75 + ); +} + +:host([size='l']) { + --spectrum-helptext-min-height: var(--spectrum-component-height-100); + --spectrum-helptext-icon-size: var(--spectrum-workflow-icon-size-200); + --spectrum-helptext-font-size: var(--spectrum-font-size-100); + --spectrum-helptext-text-to-visual: var(--spectrum-text-to-visual-100); + --spectrum-helptext-top-to-workflow-icon: var( + --spectrum-help-text-top-to-workflow-icon-large + ); + --spectrum-helptext-bottom-to-workflow-icon: var( + --spectrum-helptext-top-to-workflow-icon + ); + --spectrum-helptext-top-to-text: var(--spectrum-component-top-to-text-100); + --spectrum-helptext-bottom-to-text: var( + --spectrum-component-bottom-to-text-100 + ); +} + +:host([size='xl']) { + --spectrum-helptext-min-height: var(--spectrum-component-height-200); + --spectrum-helptext-icon-size: var(--spectrum-workflow-icon-size-300); + --spectrum-helptext-font-size: var(--spectrum-font-size-200); + --spectrum-helptext-text-to-visual: var(--spectrum-text-to-visual-200); + --spectrum-helptext-top-to-workflow-icon: var( + --spectrum-help-text-top-to-workflow-icon-extra-large + ); + --spectrum-helptext-bottom-to-workflow-icon: var( + --spectrum-helptext-top-to-workflow-icon + ); + --spectrum-helptext-top-to-text: var(--spectrum-component-top-to-text-200); + --spectrum-helptext-bottom-to-text: var( + --spectrum-component-bottom-to-text-200 + ); +} + +@media (forced-colors: active) { + :host { + --highcontrast-helptext-content-color-default: CanvasText; + --highcontrast-helptext-icon-color-default: CanvasText; + forced-color-adjust: none; + } + + .icon, + .text { + forced-color-adjust: none; + } +} diff --git a/packages/help-text/src/vars.css b/packages/help-text/src/vars.css new file mode 100644 index 00000000000..2d5d4d00369 --- /dev/null +++ b/packages/help-text/src/vars.css @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +:host { + --spectrum-helptext-line-height: var( + --spectrum-global-font-line-height-medium + ); + --spectrum-helptext-content-color-default: var( + --spectrum-alias-text-color-secondary + ); + --spectrum-helptext-icon-color-default: var( + --spectrum-global-color-gray-600 + ); + --spectrum-helptext-disabled-content-color: var( + --spectrum-alias-text-color-disabled + ); +} diff --git a/packages/help-text/stories/help-text-sizes.stories.ts b/packages/help-text/stories/help-text-sizes.stories.ts new file mode 100644 index 00000000000..f4fa0dbf1ba --- /dev/null +++ b/packages/help-text/stories/help-text-sizes.stories.ts @@ -0,0 +1,53 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; + +import '@iliad-ui/help-text/sp-help-text.js'; + +export default { + title: 'Help Text/Sizes', + component: 'sp-help-text', +}; + +export const s = (): TemplateResult => { + return html` + + Passwords must be at least 8 characters. + + `; +}; + +export const m = (): TemplateResult => { + return html` + + Passwords must be at least 8 characters. + + `; +}; + +export const l = (): TemplateResult => { + return html` + + Passwords must be at least 8 characters. + + `; +}; + +export const XL = (): TemplateResult => { + return html` + + Passwords must be at least 8 characters. + + `; +}; diff --git a/packages/help-text/stories/help-text.stories.ts b/packages/help-text/stories/help-text.stories.ts new file mode 100644 index 00000000000..a814ead1cc5 --- /dev/null +++ b/packages/help-text/stories/help-text.stories.ts @@ -0,0 +1,133 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; + +import '@iliad-ui/help-text/sp-help-text.js'; + +export default { + title: 'Help Text', + component: 'sp-help-text', + argTypes: { + icon: { + name: 'icon', + type: { name: 'boolean', required: false }, + discription: 'Whether the Help Text is delivered with an icon.', + table: { + type: { summary: 'boolean' }, + defaultValue: { summary: false }, + }, + control: { + type: 'boolean', + }, + }, + disabled: { + name: 'disabled', + type: { name: 'boolean', required: false }, + description: 'Help Text for disabled form elements.', + table: { + type: { summary: 'boolean' }, + defaultValue: { summary: false }, + }, + control: { + type: 'boolean', + }, + }, + variant: { + name: 'variant', + type: { name: 'string', required: false }, + description: 'The visual variant to apply to the Help Text.', + table: { + type: { summary: 'string' }, + defaultValue: { summary: 'cta' }, + }, + control: { + type: 'inline-radio', + options: ['neutral', 'negative'], + }, + }, + size: { + name: 'size', + type: { name: 'string', required: false }, + description: 'The visual variant to apply to the Help Text.', + table: { + type: { summary: 'string' }, + defaultValue: { summary: 'cta' }, + }, + control: { + type: 'inline-radio', + options: ['s', 'm', 'l', 'xl'], + }, + }, + }, + args: { + size: 'm', + }, +}; + +interface Properties { + content?: string; + disabled?: boolean; + icon?: boolean; + size?: 's' | 'm' | 'l' | 'xl'; + variant?: 'neutral' | 'negative'; +} + +const Template = (args: Properties): TemplateResult => html` + + ${args.content} + +`; + +export const neutral = (args: Properties = {}): TemplateResult => + Template({ + ...args, + content: 'Passwords must be at least 8 characters.', + }); +neutral.args = { + variant: 'neutral', +}; + +export const negative = (args: Properties = {}): TemplateResult => + Template({ + ...args, + content: 'Create a password with at least 8 characters.', + }); +negative.args = { + variant: 'negative', +}; + +export const negativeIcon = (args: Properties = {}): TemplateResult => + Template({ + ...args, + content: 'Create a password with at least 8 characters.', + }); +negativeIcon.args = { + icon: true, + variant: 'negative', +}; + +export const disabled = (args: Properties = {}): TemplateResult => + Template({ + ...args, + content: 'Passwords must be at least 8 characters.', + }); +disabled.args = { + disabled: true, + variant: 'neutral', +}; diff --git a/packages/help-text/test/benchmark/basic-test.ts b/packages/help-text/test/benchmark/basic-test.ts new file mode 100644 index 00000000000..78a51f33fbc --- /dev/null +++ b/packages/help-text/test/benchmark/basic-test.ts @@ -0,0 +1,20 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import '@iliad-ui/help-text/sp-help-text.js'; +import { html } from 'lit'; +import { measureFixtureCreation } from '../../../../test/benchmark/helpers.js'; + +measureFixtureCreation(html` + +`); diff --git a/packages/help-text/test/help-text.test.ts b/packages/help-text/test/help-text.test.ts new file mode 100644 index 00000000000..2da4f2f6560 --- /dev/null +++ b/packages/help-text/test/help-text.test.ts @@ -0,0 +1,53 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { elementUpdated, expect, fixture, html } from '@open-wc/testing'; + +import '@iliad-ui/help-text/sp-help-text.js'; +import { HelpText } from '@iliad-ui/help-text'; +import { testForLitDevWarnings } from '../../../test/testing-helpers.js'; + +describe('HelpText', () => { + testForLitDevWarnings( + async () => + await fixture( + html` + This is help text. + ` + ) + ); + it('loads default help-text accessibly', async () => { + const el = await fixture( + html` + This is help text. + ` + ); + + await elementUpdated(el); + + await expect(el).to.be.accessible(); + }); + it('loads negative/icon help-text accessibly', async () => { + const el = await fixture( + html` + + This is negative help text. + + ` + ); + + await elementUpdated(el); + + await expect(el).to.be.accessible(); + }); +}); diff --git a/packages/help-text/tsconfig.json b/packages/help-text/tsconfig.json new file mode 100644 index 00000000000..75919f9078c --- /dev/null +++ b/packages/help-text/tsconfig.json @@ -0,0 +1,10 @@ +{ + "extends": "../../tsconfig.json", + "compilerOptions": { + "composite": true, + "rootDir": "./" + }, + "include": ["*.ts", "src/*.ts"], + "exclude": ["test/*.ts", "stories/*.ts"], + "references": [{ "path": "../base" }] +} diff --git a/packages/textfield/src/Textfield.ts b/packages/textfield/src/Textfield.ts index 58bbf65b5fd..21ead332193 100644 --- a/packages/textfield/src/Textfield.ts +++ b/packages/textfield/src/Textfield.ts @@ -14,6 +14,7 @@ governing permissions and limitations under the License. import { html, property, + state, CSSResultArray, query, TemplateResult, @@ -30,6 +31,9 @@ import '@iliad-ui/icons-workflow/icons/sp-icon-alert.js'; import textfieldStyles from './textfield.css.js'; import checkmarkStyles from '@iliad-ui/icon/src/spectrum-icon-checkmark.css.js'; +const textfieldTypes = ['text', 'url', 'tel', 'email', 'password'] as const; +export type TextfieldType = typeof textfieldTypes[number]; + export class TextfieldBase extends Focusable { public static get styles(): CSSResultArray { return [textfieldStyles, checkmarkStyles]; @@ -38,6 +42,20 @@ export class TextfieldBase extends Focusable { @property({ attribute: 'allowed-keys' }) allowedKeys = ''; + @property({ attribute: 'type', reflect: true }) + private _type: TextfieldType = 'text'; + + @state() + get type(): TextfieldType { + return textfieldTypes.find((t) => t === this._type) ?? 'text'; + } + + set type(val: TextfieldType) { + const prev = this._type; + this._type = val; + this.requestUpdate('type', prev); + } + @property({ type: Boolean, reflect: true }) public focused = false; @@ -205,7 +223,7 @@ export class TextfieldBase extends Focusable { return html` { value="Not a valid input" disabled >
+ + + `; }; diff --git a/tasks/test-changes.js b/tasks/test-changes.js index 084234ff161..a3629cd7f91 100644 --- a/tasks/test-changes.js +++ b/tasks/test-changes.js @@ -34,7 +34,7 @@ const getChangedPackages = () => { let packageList; try { packageList = JSON.parse(command.toString()).reduce((acc, item) => { - const name = item.name.replace('@spectrum-web-components/', ''); + const name = item.name.replace('@iliad-ui/', ''); if ( // There are no benchmarks available in this directory. item.location.search('projects') === -1 && diff --git a/test/testing-helpers.ts b/test/testing-helpers.ts index 16c42b5df00..851f9771630 100644 --- a/test/testing-helpers.ts +++ b/test/testing-helpers.ts @@ -9,6 +9,22 @@ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTA OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ +import { elementUpdated, expect } from '@open-wc/testing'; +import { stub } from 'sinon'; + +export async function testForLitDevWarnings( + fixture: () => Promise +): Promise { + it('does not emit Lit Dev Mode warnings', async () => { + const consoleWarnStub = stub(console, 'warn'); + const el = await fixture(); + + await elementUpdated(el); + + expect(consoleWarnStub.called).to.be.false; + consoleWarnStub.restore(); + }); +} export function waitForPredicate( predicateFn: () => boolean | undefined, From 627dca9d4da259f7371a73f89e9d55d31c6dc395 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Fri, 5 Aug 2022 11:25:46 +0800 Subject: [PATCH 02/28] =?UTF-8?q?docs:=20=E7=89=88=E6=9D=83=E6=9B=B4?= =?UTF-8?q?=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/testing-helpers.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/test/testing-helpers.ts b/test/testing-helpers.ts index 851f9771630..5691ff8901e 100644 --- a/test/testing-helpers.ts +++ b/test/testing-helpers.ts @@ -1,5 +1,6 @@ /* Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. This file is licensed to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 From f45ad02f1910f3f4dcdaae54bba1e7907f8c3528 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Fri, 5 Aug 2022 11:30:45 +0800 Subject: [PATCH 03/28] chore: release new versions - @iliad-ui/accordion@0.8.15 - @iliad-ui/action-bar@0.6.29 - @iliad-ui/action-button@0.13.7 - @iliad-ui/action-group@0.11.10 - @iliad-ui/action-menu@0.15.31 - @iliad-ui/asset@0.8.12 - @iliad-ui/avatar@0.13.12 - @iliad-ui/banner@0.12.12 - @iliad-ui/base@0.12.0 - @iliad-ui/breadcrumb@0.1.13 - @iliad-ui/bundle@0.26.41 - @iliad-ui/button-group@0.10.15 - @iliad-ui/button@0.22.7 - @iliad-ui/card@0.14.17 - @iliad-ui/checkbox@0.14.15 - @iliad-ui/coachmark@0.10.12 - @iliad-ui/color-area@0.8.13 - @iliad-ui/color-handle@0.5.13 - @iliad-ui/color-loupe@0.5.12 - @iliad-ui/color-slider@0.7.13 - @iliad-ui/color-wheel@0.7.12 - @iliad-ui/dialog@0.10.17 - @iliad-ui/divider@0.6.13 - @iliad-ui/dropzone@0.11.12 - @iliad-ui/field-group@0.7.13 - @iliad-ui/field-label@0.9.16 - @iliad-ui/help-text@0.2.0 - @iliad-ui/icon@0.16.9 - @iliad-ui/icons-editor@0.8.1 - @iliad-ui/icons-ui@0.12.15 - @iliad-ui/icons-workflow@0.12.15 - @iliad-ui/icons@0.19.1 - @iliad-ui/iconset@0.12.6 - @iliad-ui/illustrated-message@0.10.15 - @iliad-ui/link@0.13.12 - @iliad-ui/menu@0.16.10 - @iliad-ui/meter@0.8.15 - @iliad-ui/modal@0.7.12 - @iliad-ui/number-field@0.8.3 - @iliad-ui/overlay@0.17.17 - @iliad-ui/picker@0.13.31 - @iliad-ui/popover@0.15.10 - @iliad-ui/progress-bar@0.7.15 - @iliad-ui/progress-circle@0.6.12 - @iliad-ui/quick-actions@0.8.12 - @iliad-ui/radio@0.15.6 - @iliad-ui/react@0.18.7 - @iliad-ui/search@0.12.16 - @iliad-ui/shared@0.18.12 - @iliad-ui/sidenav@0.14.12 - @iliad-ui/slider@0.17.4 - @iliad-ui/split-button@0.9.30 - @iliad-ui/split-view@0.8.12 - @iliad-ui/status-light@0.12.12 - @iliad-ui/styles@0.16.1 - @iliad-ui/switch@0.11.15 - @iliad-ui/tabs@0.12.12 - @iliad-ui/tags@0.12.16 - @iliad-ui/textfield@0.15.0 - @iliad-ui/theme@0.14.16 - @iliad-ui/thumbnail@0.6.12 - @iliad-ui/toast@0.17.1 - @iliad-ui/tooltip@0.12.17 - @iliad-ui/top-nav@0.7.12 - @iliad-ui/tray@0.6.12 - @iliad-ui/tree@0.6.4 - @iliad-ui/underlay@0.10.12 - documentation@0.1.31 - example-project-rollup@0.4.30 - example-project-webpack@1.5.63 - @iliad-ui/story-decorator@0.9.30 - @iliad-ui/vrt-compare@0.6.29 --- packages/accordion/CHANGELOG.md | 4 + packages/accordion/package.json | 10 +- packages/action-bar/CHANGELOG.md | 4 + packages/action-bar/package.json | 6 +- packages/action-button/CHANGELOG.md | 4 + packages/action-button/package.json | 10 +- packages/action-group/CHANGELOG.md | 4 + packages/action-group/package.json | 6 +- packages/action-menu/CHANGELOG.md | 4 + packages/action-menu/package.json | 16 +-- packages/asset/CHANGELOG.md | 4 + packages/asset/package.json | 4 +- packages/avatar/CHANGELOG.md | 4 + packages/avatar/package.json | 4 +- packages/banner/CHANGELOG.md | 4 + packages/banner/package.json | 4 +- packages/base/CHANGELOG.md | 6 + packages/base/package.json | 2 +- packages/breadcrumb/CHANGELOG.md | 4 + packages/breadcrumb/package.json | 4 +- packages/bundle/CHANGELOG.md | 4 + packages/bundle/package.json | 122 +++++++++--------- packages/button-group/CHANGELOG.md | 4 + packages/button-group/package.json | 4 +- packages/button/CHANGELOG.md | 4 + packages/button/package.json | 10 +- packages/card/CHANGELOG.md | 4 + packages/card/package.json | 16 +-- packages/checkbox/CHANGELOG.md | 4 + packages/checkbox/package.json | 10 +- packages/coachmark/CHANGELOG.md | 4 + packages/coachmark/package.json | 4 +- packages/color-area/CHANGELOG.md | 4 + packages/color-area/package.json | 6 +- packages/color-handle/CHANGELOG.md | 4 + packages/color-handle/package.json | 6 +- packages/color-loupe/CHANGELOG.md | 4 + packages/color-loupe/package.json | 4 +- packages/color-slider/CHANGELOG.md | 4 + packages/color-slider/package.json | 8 +- packages/color-wheel/CHANGELOG.md | 4 + packages/color-wheel/package.json | 8 +- packages/dialog/CHANGELOG.md | 4 + packages/dialog/package.json | 24 ++-- packages/divider/CHANGELOG.md | 4 + packages/divider/package.json | 4 +- packages/dropzone/CHANGELOG.md | 4 + packages/dropzone/package.json | 4 +- packages/field-group/CHANGELOG.md | 4 + packages/field-group/package.json | 4 +- packages/field-label/CHANGELOG.md | 4 + packages/field-label/package.json | 10 +- packages/help-text/CHANGELOG.md | 6 + packages/help-text/package.json | 2 +- packages/icon/CHANGELOG.md | 4 + packages/icon/package.json | 6 +- packages/icons-editor/CHANGELOG.md | 4 + packages/icons-editor/package.json | 6 +- packages/icons-ui/CHANGELOG.md | 4 + packages/icons-ui/package.json | 8 +- packages/icons-workflow/CHANGELOG.md | 4 + packages/icons-workflow/package.json | 6 +- packages/icons/CHANGELOG.md | 4 + packages/icons/package.json | 6 +- packages/iconset/CHANGELOG.md | 4 + packages/iconset/package.json | 4 +- packages/illustrated-message/CHANGELOG.md | 4 + packages/illustrated-message/package.json | 6 +- packages/link/CHANGELOG.md | 4 + packages/link/package.json | 6 +- packages/menu/CHANGELOG.md | 4 + packages/menu/package.json | 12 +- packages/meter/CHANGELOG.md | 4 + packages/meter/package.json | 8 +- packages/modal/CHANGELOG.md | 4 + packages/modal/package.json | 4 +- packages/number-field/CHANGELOG.md | 4 + packages/number-field/package.json | 12 +- packages/overlay/CHANGELOG.md | 4 + packages/overlay/package.json | 10 +- packages/picker/CHANGELOG.md | 4 + packages/picker/package.json | 20 +-- packages/popover/CHANGELOG.md | 4 + packages/popover/package.json | 8 +- packages/progress-bar/CHANGELOG.md | 4 + packages/progress-bar/package.json | 6 +- packages/progress-circle/CHANGELOG.md | 4 + packages/progress-circle/package.json | 4 +- packages/quick-actions/CHANGELOG.md | 4 + packages/quick-actions/package.json | 4 +- packages/radio/CHANGELOG.md | 4 + packages/radio/package.json | 8 +- packages/react/CHANGELOG.md | 4 + packages/react/package.json | 6 +- packages/search/CHANGELOG.md | 4 + packages/search/package.json | 12 +- packages/shared/CHANGELOG.md | 4 + packages/shared/package.json | 4 +- packages/sidenav/CHANGELOG.md | 4 + packages/sidenav/package.json | 6 +- packages/slider/CHANGELOG.md | 4 + packages/slider/package.json | 12 +- packages/split-button/CHANGELOG.md | 4 + packages/split-button/package.json | 16 +-- packages/split-view/CHANGELOG.md | 4 + packages/split-view/package.json | 4 +- packages/status-light/CHANGELOG.md | 4 + packages/status-light/package.json | 4 +- packages/styles/CHANGELOG.md | 4 + packages/styles/package.json | 4 +- packages/switch/CHANGELOG.md | 4 + packages/switch/package.json | 6 +- packages/tabs/CHANGELOG.md | 4 + packages/tabs/package.json | 6 +- packages/tags/CHANGELOG.md | 4 + packages/tags/package.json | 8 +- packages/textfield/CHANGELOG.md | 6 + packages/textfield/package.json | 12 +- packages/theme/CHANGELOG.md | 4 + packages/theme/package.json | 6 +- packages/thumbnail/CHANGELOG.md | 4 + packages/thumbnail/package.json | 4 +- packages/toast/CHANGELOG.md | 4 + packages/toast/package.json | 10 +- packages/tooltip/CHANGELOG.md | 4 + packages/tooltip/package.json | 6 +- packages/top-nav/CHANGELOG.md | 4 + packages/top-nav/package.json | 8 +- packages/tray/CHANGELOG.md | 4 + packages/tray/package.json | 8 +- packages/tree/CHANGELOG.md | 4 + packages/tree/package.json | 4 +- packages/underlay/CHANGELOG.md | 4 + packages/underlay/package.json | 4 +- projects/documentation/CHANGELOG.md | 4 + projects/documentation/package.json | 4 +- projects/example-project-rollup/CHANGELOG.md | 4 + projects/example-project-rollup/package.json | 18 +-- projects/example-project-webpack/CHANGELOG.md | 4 + projects/example-project-webpack/package.json | 14 +- projects/story-decorator/CHANGELOG.md | 4 + projects/story-decorator/package.json | 16 +-- projects/vrt-compare/CHANGELOG.md | 4 + projects/vrt-compare/package.json | 18 +-- 144 files changed, 632 insertions(+), 338 deletions(-) diff --git a/packages/accordion/CHANGELOG.md b/packages/accordion/CHANGELOG.md index b25e3357e46..461606d0667 100644 --- a/packages/accordion/CHANGELOG.md +++ b/packages/accordion/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.15](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/accordion@0.8.14...@iliad-ui/accordion@0.8.15) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/accordion + ## [0.8.14](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/accordion@0.8.13...@iliad-ui/accordion@0.8.14) (2022-06-13) **Note:** Version bump only for package @iliad-ui/accordion diff --git a/packages/accordion/package.json b/packages/accordion/package.json index ec1d1543556..b134d8ed091 100644 --- a/packages/accordion/package.json +++ b/packages/accordion/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/accordion", - "version": "0.8.14", + "version": "0.8.15", "publishConfig": { "access": "public" }, @@ -46,10 +46,10 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/icons-ui": "^0.12.14", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/icons-ui": "^0.12.15", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/action-bar/CHANGELOG.md b/packages/action-bar/CHANGELOG.md index 55077951420..3bf7ba7a96d 100644 --- a/packages/action-bar/CHANGELOG.md +++ b/packages/action-bar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.29](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.6.28...@iliad-ui/action-bar@0.6.29) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/action-bar + ## [0.6.28](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.6.27...@iliad-ui/action-bar@0.6.28) (2022-06-30) **Note:** Version bump only for package @iliad-ui/action-bar diff --git a/packages/action-bar/package.json b/packages/action-bar/package.json index 99d3542aac5..1ed928a43f4 100644 --- a/packages/action-bar/package.json +++ b/packages/action-bar/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-bar", - "version": "0.6.28", + "version": "0.6.29", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/popover": "^0.15.9", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/popover": "^0.15.10", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/action-button/CHANGELOG.md b/packages/action-button/CHANGELOG.md index d4515e95df6..1dfbcd74a8a 100644 --- a/packages/action-button/CHANGELOG.md +++ b/packages/action-button/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-button@0.13.6...@iliad-ui/action-button@0.13.7) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/action-button + ## [0.13.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-button@0.13.5...@iliad-ui/action-button@0.13.6) (2022-06-13) **Note:** Version bump only for package @iliad-ui/action-button diff --git a/packages/action-button/package.json b/packages/action-button/package.json index a25c9d6ddb3..e208460dfaa 100644 --- a/packages/action-button/package.json +++ b/packages/action-button/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-button", - "version": "0.13.6", + "version": "0.13.7", "publishConfig": { "access": "public" }, @@ -44,10 +44,10 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/button": "^0.22.6", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/icons-ui": "^0.12.14", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/button": "^0.22.7", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/icons-ui": "^0.12.15", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/action-group/CHANGELOG.md b/packages/action-group/CHANGELOG.md index 6383484feed..1649a2d514d 100644 --- a/packages/action-group/CHANGELOG.md +++ b/packages/action-group/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.11.10](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-group@0.11.9...@iliad-ui/action-group@0.11.10) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/action-group + ## [0.11.9](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-group@0.11.8...@iliad-ui/action-group@0.11.9) (2022-06-13) **Note:** Version bump only for package @iliad-ui/action-group diff --git a/packages/action-group/package.json b/packages/action-group/package.json index 4b4aaf549f9..93e1dca18e0 100644 --- a/packages/action-group/package.json +++ b/packages/action-group/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-group", - "version": "0.11.9", + "version": "0.11.10", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.13.6", - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/action-button": "^0.13.7", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/action-menu/CHANGELOG.md b/packages/action-menu/CHANGELOG.md index 2f3959dce3b..c340c18d48b 100644 --- a/packages/action-menu/CHANGELOG.md +++ b/packages/action-menu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.15.31](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.15.30...@iliad-ui/action-menu@0.15.31) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/action-menu + ## [0.15.30](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.15.29...@iliad-ui/action-menu@0.15.30) (2022-06-30) **Note:** Version bump only for package @iliad-ui/action-menu diff --git a/packages/action-menu/package.json b/packages/action-menu/package.json index d1e5ed5b017..130a8681e1a 100644 --- a/packages/action-menu/package.json +++ b/packages/action-menu/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-menu", - "version": "0.15.30", + "version": "0.15.31", "publishConfig": { "access": "public" }, @@ -46,13 +46,13 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.13.6", - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/icons-workflow": "^0.12.14", - "@iliad-ui/menu": "^0.16.9", - "@iliad-ui/picker": "^0.13.30", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/action-button": "^0.13.7", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/icons-workflow": "^0.12.15", + "@iliad-ui/menu": "^0.16.10", + "@iliad-ui/picker": "^0.13.31", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/asset/CHANGELOG.md b/packages/asset/CHANGELOG.md index 4c9d0191f7a..b513afb6122 100644 --- a/packages/asset/CHANGELOG.md +++ b/packages/asset/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/asset@0.8.11...@iliad-ui/asset@0.8.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/asset + ## [0.8.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/asset@0.8.10...@iliad-ui/asset@0.8.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/asset diff --git a/packages/asset/package.json b/packages/asset/package.json index 636ffed9149..ab7a5b4ed39 100644 --- a/packages/asset/package.json +++ b/packages/asset/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/asset", - "version": "0.8.11", + "version": "0.8.12", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/avatar/CHANGELOG.md b/packages/avatar/CHANGELOG.md index f92b60a61f0..89f484eb736 100644 --- a/packages/avatar/CHANGELOG.md +++ b/packages/avatar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/avatar@0.13.11...@iliad-ui/avatar@0.13.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/avatar + ## [0.13.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/avatar@0.13.10...@iliad-ui/avatar@0.13.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/avatar diff --git a/packages/avatar/package.json b/packages/avatar/package.json index 931c24fb927..7f85a2ec6b7 100644 --- a/packages/avatar/package.json +++ b/packages/avatar/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/avatar", - "version": "0.13.11", + "version": "0.13.12", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/banner/CHANGELOG.md b/packages/banner/CHANGELOG.md index 849dd74d829..4be52d0a10c 100644 --- a/packages/banner/CHANGELOG.md +++ b/packages/banner/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/banner@0.12.11...@iliad-ui/banner@0.12.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/banner + ## [0.12.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/banner@0.12.10...@iliad-ui/banner@0.12.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/banner diff --git a/packages/banner/package.json b/packages/banner/package.json index d7a0e6af845..7861f57fd46 100644 --- a/packages/banner/package.json +++ b/packages/banner/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/banner", - "version": "0.12.11", + "version": "0.12.12", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/base/CHANGELOG.md b/packages/base/CHANGELOG.md index 4bb76c0d7ed..0d869340b02 100644 --- a/packages/base/CHANGELOG.md +++ b/packages/base/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.12.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/base@0.11.6...@iliad-ui/base@0.12.0) (2022-08-05) + +### Features + +- textfield 增加 type ([9781565](https://github.com/gaoding-inc/iliad-ui/commit/9781565d170a4d96bb8fd655fea2c1baac6202bb)) + ## [0.11.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/base@0.11.5...@iliad-ui/base@0.11.6) (2022-06-13) **Note:** Version bump only for package @iliad-ui/base diff --git a/packages/base/package.json b/packages/base/package.json index 6e73585e7ea..2c1590c0b19 100644 --- a/packages/base/package.json +++ b/packages/base/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/base", - "version": "0.11.6", + "version": "0.12.0", "publishConfig": { "access": "public" }, diff --git a/packages/breadcrumb/CHANGELOG.md b/packages/breadcrumb/CHANGELOG.md index 761a56bd9e5..cc67d27778b 100644 --- a/packages/breadcrumb/CHANGELOG.md +++ b/packages/breadcrumb/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.13](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/breadcrumb@0.1.12...@iliad-ui/breadcrumb@0.1.13) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/breadcrumb + ## [0.1.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/breadcrumb@0.1.11...@iliad-ui/breadcrumb@0.1.12) (2022-06-13) **Note:** Version bump only for package @iliad-ui/breadcrumb diff --git a/packages/breadcrumb/package.json b/packages/breadcrumb/package.json index fc0e71585ad..79a8b860c3f 100644 --- a/packages/breadcrumb/package.json +++ b/packages/breadcrumb/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/breadcrumb", - "version": "0.1.12", + "version": "0.1.13", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/bundle/CHANGELOG.md b/packages/bundle/CHANGELOG.md index f3773e25603..970e84eb05c 100644 --- a/packages/bundle/CHANGELOG.md +++ b/packages/bundle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.26.41](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.26.40...@iliad-ui/bundle@0.26.41) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/bundle + ## [0.26.40](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.26.39...@iliad-ui/bundle@0.26.40) (2022-06-30) **Note:** Version bump only for package @iliad-ui/bundle diff --git a/packages/bundle/package.json b/packages/bundle/package.json index b9b85d94631..7bed813b47f 100644 --- a/packages/bundle/package.json +++ b/packages/bundle/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/bundle", - "version": "0.26.40", + "version": "0.26.41", "publishConfig": { "access": "public" }, @@ -46,66 +46,66 @@ "lit-html" ], "dependencies": { - "@iliad-ui/accordion": "^0.8.14", - "@iliad-ui/action-bar": "^0.6.28", - "@iliad-ui/action-button": "^0.13.6", - "@iliad-ui/action-group": "^0.11.9", - "@iliad-ui/action-menu": "^0.15.30", - "@iliad-ui/asset": "^0.8.11", - "@iliad-ui/avatar": "^0.13.11", - "@iliad-ui/banner": "^0.12.11", - "@iliad-ui/breadcrumb": "^0.1.12", - "@iliad-ui/button": "^0.22.6", - "@iliad-ui/button-group": "^0.10.14", - "@iliad-ui/card": "^0.14.16", - "@iliad-ui/checkbox": "^0.14.14", - "@iliad-ui/coachmark": "^0.10.11", - "@iliad-ui/color-area": "^0.8.12", - "@iliad-ui/color-handle": "^0.5.12", - "@iliad-ui/color-loupe": "^0.5.11", - "@iliad-ui/color-slider": "^0.7.12", - "@iliad-ui/color-wheel": "^0.7.11", - "@iliad-ui/dialog": "^0.10.16", - "@iliad-ui/divider": "^0.6.12", - "@iliad-ui/dropzone": "^0.11.11", - "@iliad-ui/field-group": "^0.7.12", - "@iliad-ui/field-label": "^0.9.15", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/icons": "^0.19.0", - "@iliad-ui/icons-editor": "^0.8.0", - "@iliad-ui/icons-ui": "^0.12.14", - "@iliad-ui/icons-workflow": "^0.12.14", - "@iliad-ui/iconset": "^0.12.5", - "@iliad-ui/illustrated-message": "^0.10.14", - "@iliad-ui/link": "^0.13.11", - "@iliad-ui/menu": "^0.16.9", - "@iliad-ui/meter": "^0.8.14", - "@iliad-ui/number-field": "^0.8.2", - "@iliad-ui/overlay": "^0.17.16", - "@iliad-ui/picker": "^0.13.30", - "@iliad-ui/popover": "^0.15.9", - "@iliad-ui/progress-bar": "^0.7.14", - "@iliad-ui/progress-circle": "^0.6.11", - "@iliad-ui/quick-actions": "^0.8.11", - "@iliad-ui/radio": "^0.15.5", - "@iliad-ui/search": "^0.12.15", - "@iliad-ui/sidenav": "^0.14.11", - "@iliad-ui/slider": "^0.17.3", - "@iliad-ui/split-button": "^0.9.29", - "@iliad-ui/split-view": "^0.8.11", - "@iliad-ui/status-light": "^0.12.11", - "@iliad-ui/switch": "^0.11.14", - "@iliad-ui/tabs": "^0.12.11", - "@iliad-ui/tags": "^0.12.15", - "@iliad-ui/textfield": "^0.14.15", - "@iliad-ui/theme": "^0.14.15", - "@iliad-ui/thumbnail": "^0.6.11", - "@iliad-ui/toast": "^0.17.0", - "@iliad-ui/tooltip": "^0.12.16", - "@iliad-ui/top-nav": "^0.7.11", - "@iliad-ui/tray": "^0.6.11", - "@iliad-ui/tree": "^0.6.3", - "@iliad-ui/underlay": "^0.10.11", + "@iliad-ui/accordion": "^0.8.15", + "@iliad-ui/action-bar": "^0.6.29", + "@iliad-ui/action-button": "^0.13.7", + "@iliad-ui/action-group": "^0.11.10", + "@iliad-ui/action-menu": "^0.15.31", + "@iliad-ui/asset": "^0.8.12", + "@iliad-ui/avatar": "^0.13.12", + "@iliad-ui/banner": "^0.12.12", + "@iliad-ui/breadcrumb": "^0.1.13", + "@iliad-ui/button": "^0.22.7", + "@iliad-ui/button-group": "^0.10.15", + "@iliad-ui/card": "^0.14.17", + "@iliad-ui/checkbox": "^0.14.15", + "@iliad-ui/coachmark": "^0.10.12", + "@iliad-ui/color-area": "^0.8.13", + "@iliad-ui/color-handle": "^0.5.13", + "@iliad-ui/color-loupe": "^0.5.12", + "@iliad-ui/color-slider": "^0.7.13", + "@iliad-ui/color-wheel": "^0.7.12", + "@iliad-ui/dialog": "^0.10.17", + "@iliad-ui/divider": "^0.6.13", + "@iliad-ui/dropzone": "^0.11.12", + "@iliad-ui/field-group": "^0.7.13", + "@iliad-ui/field-label": "^0.9.16", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/icons": "^0.19.1", + "@iliad-ui/icons-editor": "^0.8.1", + "@iliad-ui/icons-ui": "^0.12.15", + "@iliad-ui/icons-workflow": "^0.12.15", + "@iliad-ui/iconset": "^0.12.6", + "@iliad-ui/illustrated-message": "^0.10.15", + "@iliad-ui/link": "^0.13.12", + "@iliad-ui/menu": "^0.16.10", + "@iliad-ui/meter": "^0.8.15", + "@iliad-ui/number-field": "^0.8.3", + "@iliad-ui/overlay": "^0.17.17", + "@iliad-ui/picker": "^0.13.31", + "@iliad-ui/popover": "^0.15.10", + "@iliad-ui/progress-bar": "^0.7.15", + "@iliad-ui/progress-circle": "^0.6.12", + "@iliad-ui/quick-actions": "^0.8.12", + "@iliad-ui/radio": "^0.15.6", + "@iliad-ui/search": "^0.12.16", + "@iliad-ui/sidenav": "^0.14.12", + "@iliad-ui/slider": "^0.17.4", + "@iliad-ui/split-button": "^0.9.30", + "@iliad-ui/split-view": "^0.8.12", + "@iliad-ui/status-light": "^0.12.12", + "@iliad-ui/switch": "^0.11.15", + "@iliad-ui/tabs": "^0.12.12", + "@iliad-ui/tags": "^0.12.16", + "@iliad-ui/textfield": "^0.15.0", + "@iliad-ui/theme": "^0.14.16", + "@iliad-ui/thumbnail": "^0.6.12", + "@iliad-ui/toast": "^0.17.1", + "@iliad-ui/tooltip": "^0.12.17", + "@iliad-ui/top-nav": "^0.7.12", + "@iliad-ui/tray": "^0.6.12", + "@iliad-ui/tree": "^0.6.4", + "@iliad-ui/underlay": "^0.10.12", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/button-group/CHANGELOG.md b/packages/button-group/CHANGELOG.md index 1d24eaf9054..48f14fd081d 100644 --- a/packages/button-group/CHANGELOG.md +++ b/packages/button-group/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.15](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/button-group@0.10.14...@iliad-ui/button-group@0.10.15) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/button-group + ## [0.10.14](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/button-group@0.10.13...@iliad-ui/button-group@0.10.14) (2022-06-13) **Note:** Version bump only for package @iliad-ui/button-group diff --git a/packages/button-group/package.json b/packages/button-group/package.json index 5eb6423da7d..a086d8ee0ca 100644 --- a/packages/button-group/package.json +++ b/packages/button-group/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/button-group", - "version": "0.10.14", + "version": "0.10.15", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/button/CHANGELOG.md b/packages/button/CHANGELOG.md index ac329a2fc34..319a6db3204 100644 --- a/packages/button/CHANGELOG.md +++ b/packages/button/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.22.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/button@0.22.6...@iliad-ui/button@0.22.7) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/button + ## [0.22.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/button@0.22.5...@iliad-ui/button@0.22.6) (2022-06-13) **Note:** Version bump only for package @iliad-ui/button diff --git a/packages/button/package.json b/packages/button/package.json index 5abc4c76b40..36e80242f44 100644 --- a/packages/button/package.json +++ b/packages/button/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/button", - "version": "0.22.6", + "version": "0.22.7", "publishConfig": { "access": "public" }, @@ -46,10 +46,10 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/icons-ui": "^0.12.14", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/icons-ui": "^0.12.15", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/card/CHANGELOG.md b/packages/card/CHANGELOG.md index 4e1bde6e844..3003d6cb1f5 100644 --- a/packages/card/CHANGELOG.md +++ b/packages/card/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.17](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/card@0.14.16...@iliad-ui/card@0.14.17) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/card + ## [0.14.16](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/card@0.14.15...@iliad-ui/card@0.14.16) (2022-06-30) **Note:** Version bump only for package @iliad-ui/card diff --git a/packages/card/package.json b/packages/card/package.json index a8dfb8efbfd..f93cebb919c 100644 --- a/packages/card/package.json +++ b/packages/card/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/card", - "version": "0.14.16", + "version": "0.14.17", "publishConfig": { "access": "public" }, @@ -44,13 +44,13 @@ "lit-html" ], "dependencies": { - "@iliad-ui/asset": "^0.8.11", - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/checkbox": "^0.14.14", - "@iliad-ui/icons-workflow": "^0.12.14", - "@iliad-ui/quick-actions": "^0.8.11", - "@iliad-ui/shared": "^0.18.11", - "@iliad-ui/styles": "^0.16.0", + "@iliad-ui/asset": "^0.8.12", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/checkbox": "^0.14.15", + "@iliad-ui/icons-workflow": "^0.12.15", + "@iliad-ui/quick-actions": "^0.8.12", + "@iliad-ui/shared": "^0.18.12", + "@iliad-ui/styles": "^0.16.1", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/checkbox/CHANGELOG.md b/packages/checkbox/CHANGELOG.md index c4794c5c3d0..d2d35659654 100644 --- a/packages/checkbox/CHANGELOG.md +++ b/packages/checkbox/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.15](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/checkbox@0.14.14...@iliad-ui/checkbox@0.14.15) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/checkbox + ## [0.14.14](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/checkbox@0.14.13...@iliad-ui/checkbox@0.14.14) (2022-06-13) **Note:** Version bump only for package @iliad-ui/checkbox diff --git a/packages/checkbox/package.json b/packages/checkbox/package.json index a20f91f0070..2d347003b09 100644 --- a/packages/checkbox/package.json +++ b/packages/checkbox/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/checkbox", - "version": "0.14.14", + "version": "0.14.15", "publishConfig": { "access": "public" }, @@ -44,10 +44,10 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/icons-ui": "^0.12.14", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/icons-ui": "^0.12.15", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/coachmark/CHANGELOG.md b/packages/coachmark/CHANGELOG.md index f45e87e02a5..7a3b2ddb02e 100644 --- a/packages/coachmark/CHANGELOG.md +++ b/packages/coachmark/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/coachmark@0.10.11...@iliad-ui/coachmark@0.10.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/coachmark + ## [0.10.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/coachmark@0.10.10...@iliad-ui/coachmark@0.10.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/coachmark diff --git a/packages/coachmark/package.json b/packages/coachmark/package.json index 2d37e1ed02a..9651a597d15 100644 --- a/packages/coachmark/package.json +++ b/packages/coachmark/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/coachmark", - "version": "0.10.11", + "version": "0.10.12", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/color-area/CHANGELOG.md b/packages/color-area/CHANGELOG.md index d470c380835..078bffc257c 100644 --- a/packages/color-area/CHANGELOG.md +++ b/packages/color-area/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.13](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-area@0.8.12...@iliad-ui/color-area@0.8.13) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/color-area + ## [0.8.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-area@0.8.11...@iliad-ui/color-area@0.8.12) (2022-06-13) **Note:** Version bump only for package @iliad-ui/color-area diff --git a/packages/color-area/package.json b/packages/color-area/package.json index c3e29aeae26..ceff103e9a8 100644 --- a/packages/color-area/package.json +++ b/packages/color-area/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/color-area", - "version": "0.8.12", + "version": "0.8.13", "publishConfig": { "access": "public" }, @@ -45,8 +45,8 @@ ], "dependencies": { "@ctrl/tinycolor": "^3.3.3", - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/color-handle": "^0.5.12", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/color-handle": "^0.5.13", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/color-handle/CHANGELOG.md b/packages/color-handle/CHANGELOG.md index 1093eb2f405..4bf0a2fb109 100644 --- a/packages/color-handle/CHANGELOG.md +++ b/packages/color-handle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.13](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-handle@0.5.12...@iliad-ui/color-handle@0.5.13) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/color-handle + ## [0.5.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-handle@0.5.11...@iliad-ui/color-handle@0.5.12) (2022-06-13) **Note:** Version bump only for package @iliad-ui/color-handle diff --git a/packages/color-handle/package.json b/packages/color-handle/package.json index eb324e13d62..225c0dfa310 100644 --- a/packages/color-handle/package.json +++ b/packages/color-handle/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/color-handle", - "version": "0.5.12", + "version": "0.5.13", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/color-loupe": "^0.5.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/color-loupe": "^0.5.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/color-loupe/CHANGELOG.md b/packages/color-loupe/CHANGELOG.md index e78dfd273cf..c845ea405dd 100644 --- a/packages/color-loupe/CHANGELOG.md +++ b/packages/color-loupe/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-loupe@0.5.11...@iliad-ui/color-loupe@0.5.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/color-loupe + ## [0.5.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-loupe@0.5.10...@iliad-ui/color-loupe@0.5.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/color-loupe diff --git a/packages/color-loupe/package.json b/packages/color-loupe/package.json index 7fef1131a7e..7c37cfa8b21 100644 --- a/packages/color-loupe/package.json +++ b/packages/color-loupe/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/color-loupe", - "version": "0.5.11", + "version": "0.5.12", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/color-slider/CHANGELOG.md b/packages/color-slider/CHANGELOG.md index 12661e541a9..9a95f80daca 100644 --- a/packages/color-slider/CHANGELOG.md +++ b/packages/color-slider/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.13](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-slider@0.7.12...@iliad-ui/color-slider@0.7.13) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/color-slider + ## [0.7.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-slider@0.7.11...@iliad-ui/color-slider@0.7.12) (2022-06-13) **Note:** Version bump only for package @iliad-ui/color-slider diff --git a/packages/color-slider/package.json b/packages/color-slider/package.json index 066f3cf5d2f..6e6b8032dbc 100644 --- a/packages/color-slider/package.json +++ b/packages/color-slider/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/color-slider", - "version": "0.7.12", + "version": "0.7.13", "publishConfig": { "access": "public" }, @@ -45,9 +45,9 @@ ], "dependencies": { "@ctrl/tinycolor": "^3.3.3", - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/color-handle": "^0.5.12", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/color-handle": "^0.5.13", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/color-wheel/CHANGELOG.md b/packages/color-wheel/CHANGELOG.md index 56b3fb92e7c..272450db188 100644 --- a/packages/color-wheel/CHANGELOG.md +++ b/packages/color-wheel/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-wheel@0.7.11...@iliad-ui/color-wheel@0.7.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/color-wheel + ## [0.7.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-wheel@0.7.10...@iliad-ui/color-wheel@0.7.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/color-wheel diff --git a/packages/color-wheel/package.json b/packages/color-wheel/package.json index d17e0a8bc7b..2809df0fb44 100644 --- a/packages/color-wheel/package.json +++ b/packages/color-wheel/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/color-wheel", - "version": "0.7.11", + "version": "0.7.12", "publishConfig": { "access": "public" }, @@ -45,9 +45,9 @@ ], "dependencies": { "@ctrl/tinycolor": "^3.3.3", - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/color-handle": "^0.5.12", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/color-handle": "^0.5.13", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/dialog/CHANGELOG.md b/packages/dialog/CHANGELOG.md index 9b7aae3a619..fcd3e748667 100644 --- a/packages/dialog/CHANGELOG.md +++ b/packages/dialog/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.17](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/dialog@0.10.16...@iliad-ui/dialog@0.10.17) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/dialog + ## [0.10.16](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/dialog@0.10.15...@iliad-ui/dialog@0.10.16) (2022-06-13) **Note:** Version bump only for package @iliad-ui/dialog diff --git a/packages/dialog/package.json b/packages/dialog/package.json index 454b1fc1d27..d298dd5e5a4 100644 --- a/packages/dialog/package.json +++ b/packages/dialog/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/dialog", - "version": "0.10.16", + "version": "0.10.17", "publishConfig": { "access": "public" }, @@ -46,17 +46,17 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.13.6", - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/button": "^0.22.6", - "@iliad-ui/button-group": "^0.10.14", - "@iliad-ui/divider": "^0.6.12", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/icons-ui": "^0.12.14", - "@iliad-ui/icons-workflow": "^0.12.14", - "@iliad-ui/modal": "^0.7.11", - "@iliad-ui/shared": "^0.18.11", - "@iliad-ui/underlay": "^0.10.11", + "@iliad-ui/action-button": "^0.13.7", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/button": "^0.22.7", + "@iliad-ui/button-group": "^0.10.15", + "@iliad-ui/divider": "^0.6.13", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/icons-ui": "^0.12.15", + "@iliad-ui/icons-workflow": "^0.12.15", + "@iliad-ui/modal": "^0.7.12", + "@iliad-ui/shared": "^0.18.12", + "@iliad-ui/underlay": "^0.10.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/divider/CHANGELOG.md b/packages/divider/CHANGELOG.md index d42465281d8..0dbd9f44cf5 100644 --- a/packages/divider/CHANGELOG.md +++ b/packages/divider/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.13](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/divider@0.6.12...@iliad-ui/divider@0.6.13) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/divider + ## [0.6.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/divider@0.6.11...@iliad-ui/divider@0.6.12) (2022-06-13) **Note:** Version bump only for package @iliad-ui/divider diff --git a/packages/divider/package.json b/packages/divider/package.json index f68c73da417..b255564ddc5 100644 --- a/packages/divider/package.json +++ b/packages/divider/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/divider", - "version": "0.6.12", + "version": "0.6.13", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/dropzone/CHANGELOG.md b/packages/dropzone/CHANGELOG.md index ce78dc8c69a..f92f4432d18 100644 --- a/packages/dropzone/CHANGELOG.md +++ b/packages/dropzone/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.11.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/dropzone@0.11.11...@iliad-ui/dropzone@0.11.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/dropzone + ## [0.11.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/dropzone@0.11.10...@iliad-ui/dropzone@0.11.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/dropzone diff --git a/packages/dropzone/package.json b/packages/dropzone/package.json index dc7d95b3366..0112a2a1d77 100644 --- a/packages/dropzone/package.json +++ b/packages/dropzone/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/dropzone", - "version": "0.11.11", + "version": "0.11.12", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/field-group/CHANGELOG.md b/packages/field-group/CHANGELOG.md index 9786a003a2b..4ae817a317e 100644 --- a/packages/field-group/CHANGELOG.md +++ b/packages/field-group/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.13](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/field-group@0.7.12...@iliad-ui/field-group@0.7.13) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/field-group + ## [0.7.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/field-group@0.7.11...@iliad-ui/field-group@0.7.12) (2022-06-13) **Note:** Version bump only for package @iliad-ui/field-group diff --git a/packages/field-group/package.json b/packages/field-group/package.json index 75353401961..495d3ed7645 100644 --- a/packages/field-group/package.json +++ b/packages/field-group/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/field-group", - "version": "0.7.12", + "version": "0.7.13", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/field-label/CHANGELOG.md b/packages/field-label/CHANGELOG.md index 795920a8624..6208a534fc6 100644 --- a/packages/field-label/CHANGELOG.md +++ b/packages/field-label/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.16](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/field-label@0.9.15...@iliad-ui/field-label@0.9.16) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/field-label + ## [0.9.15](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/field-label@0.9.14...@iliad-ui/field-label@0.9.15) (2022-06-13) **Note:** Version bump only for package @iliad-ui/field-label diff --git a/packages/field-label/package.json b/packages/field-label/package.json index bde770c5910..e1f14110cff 100644 --- a/packages/field-label/package.json +++ b/packages/field-label/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/field-label", - "version": "0.9.15", + "version": "0.9.16", "publishConfig": { "access": "public" }, @@ -44,10 +44,10 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/icons-ui": "^0.12.14", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/icons-ui": "^0.12.15", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/help-text/CHANGELOG.md b/packages/help-text/CHANGELOG.md index 69ccf0c76ed..ec250e01290 100644 --- a/packages/help-text/CHANGELOG.md +++ b/packages/help-text/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# 0.2.0 (2022-08-05) + +### Features + +- textfield 增加 type ([9781565](https://github.com/gaoding-inc/iliad-ui/commit/9781565d170a4d96bb8fd655fea2c1baac6202bb)) + ## [0.1.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/help-text@0.1.10...@iliad-ui/help-text@0.1.11) (2022-08-04) **Note:** Version bump only for package @iliad-ui/help-text diff --git a/packages/help-text/package.json b/packages/help-text/package.json index 6e063442553..c8eabf15e86 100644 --- a/packages/help-text/package.json +++ b/packages/help-text/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/help-text", - "version": "0.1.11", + "version": "0.2.0", "publishConfig": { "access": "public" }, diff --git a/packages/icon/CHANGELOG.md b/packages/icon/CHANGELOG.md index 56565f9342d..34643031cf7 100644 --- a/packages/icon/CHANGELOG.md +++ b/packages/icon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.9](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icon@0.16.8...@iliad-ui/icon@0.16.9) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/icon + ## [0.16.8](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icon@0.16.7...@iliad-ui/icon@0.16.8) (2022-06-13) **Note:** Version bump only for package @iliad-ui/icon diff --git a/packages/icon/package.json b/packages/icon/package.json index cc9e4356969..989cc6763b1 100644 --- a/packages/icon/package.json +++ b/packages/icon/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icon", - "version": "0.16.8", + "version": "0.16.9", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/iconset": "^0.12.5", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/iconset": "^0.12.6", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/icons-editor/CHANGELOG.md b/packages/icons-editor/CHANGELOG.md index b8e6e2fd493..ae9907b35f2 100644 --- a/packages/icons-editor/CHANGELOG.md +++ b/packages/icons-editor/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.8.0...@iliad-ui/icons-editor@0.8.1) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/icons-editor + # [0.8.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.7.0...@iliad-ui/icons-editor@0.8.0) (2022-06-30) ### Features diff --git a/packages/icons-editor/package.json b/packages/icons-editor/package.json index fe81717a9e7..d8f74241a96 100644 --- a/packages/icons-editor/package.json +++ b/packages/icons-editor/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons-editor", - "version": "0.8.0", + "version": "0.8.1", "publishConfig": { "access": "public" }, @@ -45,8 +45,8 @@ "figma" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/icon": "^0.16.8", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/icon": "^0.16.9", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/icons-ui/CHANGELOG.md b/packages/icons-ui/CHANGELOG.md index a29d09f2645..51cc70d7cf9 100644 --- a/packages/icons-ui/CHANGELOG.md +++ b/packages/icons-ui/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.15](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-ui@0.12.14...@iliad-ui/icons-ui@0.12.15) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/icons-ui + ## [0.12.14](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-ui@0.12.13...@iliad-ui/icons-ui@0.12.14) (2022-06-13) **Note:** Version bump only for package @iliad-ui/icons-ui diff --git a/packages/icons-ui/package.json b/packages/icons-ui/package.json index 8410a78354c..f4e142d8a25 100644 --- a/packages/icons-ui/package.json +++ b/packages/icons-ui/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons-ui", - "version": "0.12.14", + "version": "0.12.15", "publishConfig": { "access": "public" }, @@ -44,9 +44,9 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/iconset": "^0.12.5", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/iconset": "^0.12.6", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/icons-workflow/CHANGELOG.md b/packages/icons-workflow/CHANGELOG.md index 0495c03884b..2d74734e4f0 100644 --- a/packages/icons-workflow/CHANGELOG.md +++ b/packages/icons-workflow/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.15](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-workflow@0.12.14...@iliad-ui/icons-workflow@0.12.15) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/icons-workflow + ## [0.12.14](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-workflow@0.12.13...@iliad-ui/icons-workflow@0.12.14) (2022-06-13) **Note:** Version bump only for package @iliad-ui/icons-workflow diff --git a/packages/icons-workflow/package.json b/packages/icons-workflow/package.json index de761fb3cff..ac03415708c 100644 --- a/packages/icons-workflow/package.json +++ b/packages/icons-workflow/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons-workflow", - "version": "0.12.14", + "version": "0.12.15", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/icon": "^0.16.8", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/icon": "^0.16.9", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index 113870d7f08..61e3ca42c76 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.19.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.19.0...@iliad-ui/icons@0.19.1) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/icons + # [0.19.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.18.0...@iliad-ui/icons@0.19.0) (2022-06-30) ### Features diff --git a/packages/icons/package.json b/packages/icons/package.json index d066217b531..14ed619803b 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons", - "version": "0.19.0", + "version": "0.19.1", "publishConfig": { "access": "public" }, @@ -48,8 +48,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/iconset": "^0.12.5", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/iconset": "^0.12.6", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/iconset/CHANGELOG.md b/packages/iconset/CHANGELOG.md index b1df3034ea7..813c07e02e0 100644 --- a/packages/iconset/CHANGELOG.md +++ b/packages/iconset/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/iconset@0.12.5...@iliad-ui/iconset@0.12.6) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/iconset + ## [0.12.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/iconset@0.12.4...@iliad-ui/iconset@0.12.5) (2022-06-13) **Note:** Version bump only for package @iliad-ui/iconset diff --git a/packages/iconset/package.json b/packages/iconset/package.json index 64bbf1bb510..b626578d93e 100644 --- a/packages/iconset/package.json +++ b/packages/iconset/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/iconset", - "version": "0.12.5", + "version": "0.12.6", "publishConfig": { "access": "public" }, @@ -41,7 +41,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/illustrated-message/CHANGELOG.md b/packages/illustrated-message/CHANGELOG.md index 6b811458d0e..aa9586fd6b8 100644 --- a/packages/illustrated-message/CHANGELOG.md +++ b/packages/illustrated-message/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.15](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/illustrated-message@0.10.14...@iliad-ui/illustrated-message@0.10.15) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/illustrated-message + ## [0.10.14](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/illustrated-message@0.10.13...@iliad-ui/illustrated-message@0.10.14) (2022-06-30) **Note:** Version bump only for package @iliad-ui/illustrated-message diff --git a/packages/illustrated-message/package.json b/packages/illustrated-message/package.json index c687a0219d7..7c207e38638 100644 --- a/packages/illustrated-message/package.json +++ b/packages/illustrated-message/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/illustrated-message", - "version": "0.10.14", + "version": "0.10.15", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/styles": "^0.16.0", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/styles": "^0.16.1", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/link/CHANGELOG.md b/packages/link/CHANGELOG.md index fcbce333cba..245dc78ffe5 100644 --- a/packages/link/CHANGELOG.md +++ b/packages/link/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/link@0.13.11...@iliad-ui/link@0.13.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/link + ## [0.13.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/link@0.13.10...@iliad-ui/link@0.13.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/link diff --git a/packages/link/package.json b/packages/link/package.json index 921c03453c5..ae12eb2d6bb 100644 --- a/packages/link/package.json +++ b/packages/link/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/link", - "version": "0.13.11", + "version": "0.13.12", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/menu/CHANGELOG.md b/packages/menu/CHANGELOG.md index 51aefa0afcb..ddbf145d1a9 100644 --- a/packages/menu/CHANGELOG.md +++ b/packages/menu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.10](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/menu@0.16.9...@iliad-ui/menu@0.16.10) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/menu + ## [0.16.9](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/menu@0.16.8...@iliad-ui/menu@0.16.9) (2022-06-13) **Note:** Version bump only for package @iliad-ui/menu diff --git a/packages/menu/package.json b/packages/menu/package.json index bd56b37ae93..dd30cfc84ce 100644 --- a/packages/menu/package.json +++ b/packages/menu/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/menu", - "version": "0.16.9", + "version": "0.16.10", "publishConfig": { "access": "public" }, @@ -50,11 +50,11 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.13.6", - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/icons-ui": "^0.12.14", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/action-button": "^0.13.7", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/icons-ui": "^0.12.15", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/meter/CHANGELOG.md b/packages/meter/CHANGELOG.md index e3b2e7572f2..c33ead4a60a 100644 --- a/packages/meter/CHANGELOG.md +++ b/packages/meter/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.15](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/meter@0.8.14...@iliad-ui/meter@0.8.15) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/meter + ## [0.8.14](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/meter@0.8.13...@iliad-ui/meter@0.8.14) (2022-06-13) **Note:** Version bump only for package @iliad-ui/meter diff --git a/packages/meter/package.json b/packages/meter/package.json index c4a16013581..a7d5d6fa148 100644 --- a/packages/meter/package.json +++ b/packages/meter/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/meter", - "version": "0.8.14", + "version": "0.8.15", "publishConfig": { "access": "public" }, @@ -44,9 +44,9 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/field-label": "^0.9.15", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/field-label": "^0.9.16", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/modal/CHANGELOG.md b/packages/modal/CHANGELOG.md index d4b6e40c2c3..2916ba8f968 100644 --- a/packages/modal/CHANGELOG.md +++ b/packages/modal/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/modal@0.7.11...@iliad-ui/modal@0.7.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/modal + ## [0.7.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/modal@0.7.10...@iliad-ui/modal@0.7.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/modal diff --git a/packages/modal/package.json b/packages/modal/package.json index a852e357a22..2f7f9166604 100644 --- a/packages/modal/package.json +++ b/packages/modal/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/modal", - "version": "0.7.11", + "version": "0.7.12", "publishConfig": { "access": "public" }, @@ -42,7 +42,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/number-field/CHANGELOG.md b/packages/number-field/CHANGELOG.md index d1f0bef59ec..d3caec43bde 100644 --- a/packages/number-field/CHANGELOG.md +++ b/packages/number-field/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/number-field@0.8.2...@iliad-ui/number-field@0.8.3) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/number-field + ## [0.8.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/number-field@0.8.1...@iliad-ui/number-field@0.8.2) (2022-06-13) **Note:** Version bump only for package @iliad-ui/number-field diff --git a/packages/number-field/package.json b/packages/number-field/package.json index c2682b78529..910d45989c8 100644 --- a/packages/number-field/package.json +++ b/packages/number-field/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/number-field", - "version": "0.8.2", + "version": "0.8.3", "publishConfig": { "access": "public" }, @@ -44,11 +44,11 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.13.6", - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/icons-ui": "^0.12.14", - "@iliad-ui/textfield": "^0.14.15", + "@iliad-ui/action-button": "^0.13.7", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/icons-ui": "^0.12.15", + "@iliad-ui/textfield": "^0.15.0", "@internationalized/number": "^3.0.2", "tslib": "^2.0.0" }, diff --git a/packages/overlay/CHANGELOG.md b/packages/overlay/CHANGELOG.md index 4e79e1916a4..178f6475439 100644 --- a/packages/overlay/CHANGELOG.md +++ b/packages/overlay/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.17.17](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/overlay@0.17.16...@iliad-ui/overlay@0.17.17) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/overlay + ## [0.17.16](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/overlay@0.17.15...@iliad-ui/overlay@0.17.16) (2022-06-30) **Note:** Version bump only for package @iliad-ui/overlay diff --git a/packages/overlay/package.json b/packages/overlay/package.json index 0b44c4344ca..e797ce75766 100644 --- a/packages/overlay/package.json +++ b/packages/overlay/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/overlay", - "version": "0.17.16", + "version": "0.17.17", "publishConfig": { "access": "public" }, @@ -48,10 +48,10 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.13.6", - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/shared": "^0.18.11", - "@iliad-ui/theme": "^0.14.15", + "@iliad-ui/action-button": "^0.13.7", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/shared": "^0.18.12", + "@iliad-ui/theme": "^0.14.16", "@popperjs/core": "^2.2.2", "popper-max-size-modifier": "^0.2.0", "tslib": "^2.0.0" diff --git a/packages/picker/CHANGELOG.md b/packages/picker/CHANGELOG.md index 4b0dbca3424..5e695c5a460 100644 --- a/packages/picker/CHANGELOG.md +++ b/packages/picker/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.31](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.13.30...@iliad-ui/picker@0.13.31) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/picker + ## [0.13.30](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.13.29...@iliad-ui/picker@0.13.30) (2022-06-30) **Note:** Version bump only for package @iliad-ui/picker diff --git a/packages/picker/package.json b/packages/picker/package.json index 691d89f642e..dd92ce31ecc 100644 --- a/packages/picker/package.json +++ b/packages/picker/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/picker", - "version": "0.13.30", + "version": "0.13.31", "publishConfig": { "access": "public" }, @@ -48,15 +48,15 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/button": "^0.22.6", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/icons-ui": "^0.12.14", - "@iliad-ui/icons-workflow": "^0.12.14", - "@iliad-ui/menu": "^0.16.9", - "@iliad-ui/overlay": "^0.17.16", - "@iliad-ui/popover": "^0.15.9", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/button": "^0.22.7", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/icons-ui": "^0.12.15", + "@iliad-ui/icons-workflow": "^0.12.15", + "@iliad-ui/menu": "^0.16.10", + "@iliad-ui/overlay": "^0.17.17", + "@iliad-ui/popover": "^0.15.10", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/popover/CHANGELOG.md b/packages/popover/CHANGELOG.md index a0fc142d54e..02feb65257c 100644 --- a/packages/popover/CHANGELOG.md +++ b/packages/popover/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.15.10](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.15.9...@iliad-ui/popover@0.15.10) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/popover + ## [0.15.9](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.15.8...@iliad-ui/popover@0.15.9) (2022-06-30) **Note:** Version bump only for package @iliad-ui/popover diff --git a/packages/popover/package.json b/packages/popover/package.json index 33e2610e324..c6f5ca749d1 100644 --- a/packages/popover/package.json +++ b/packages/popover/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/popover", - "version": "0.15.9", + "version": "0.15.10", "publishConfig": { "access": "public" }, @@ -46,9 +46,9 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/icons-editor": "^0.8.0", - "@iliad-ui/overlay": "^0.17.16", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/icons-editor": "^0.8.1", + "@iliad-ui/overlay": "^0.17.17", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/progress-bar/CHANGELOG.md b/packages/progress-bar/CHANGELOG.md index 3c2d0fc694f..f608a27b403 100644 --- a/packages/progress-bar/CHANGELOG.md +++ b/packages/progress-bar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.15](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/progress-bar@0.7.14...@iliad-ui/progress-bar@0.7.15) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/progress-bar + ## [0.7.14](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/progress-bar@0.7.13...@iliad-ui/progress-bar@0.7.14) (2022-06-13) **Note:** Version bump only for package @iliad-ui/progress-bar diff --git a/packages/progress-bar/package.json b/packages/progress-bar/package.json index 7b74568c034..83d2dc5eaaa 100644 --- a/packages/progress-bar/package.json +++ b/packages/progress-bar/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/progress-bar", - "version": "0.7.14", + "version": "0.7.15", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/field-label": "^0.9.15", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/field-label": "^0.9.16", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/progress-circle/CHANGELOG.md b/packages/progress-circle/CHANGELOG.md index 789b84063d1..9b55761d357 100644 --- a/packages/progress-circle/CHANGELOG.md +++ b/packages/progress-circle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/progress-circle@0.6.11...@iliad-ui/progress-circle@0.6.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/progress-circle + ## [0.6.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/progress-circle@0.6.10...@iliad-ui/progress-circle@0.6.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/progress-circle diff --git a/packages/progress-circle/package.json b/packages/progress-circle/package.json index f03ae9d8005..4e3e62ef8f3 100644 --- a/packages/progress-circle/package.json +++ b/packages/progress-circle/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/progress-circle", - "version": "0.6.11", + "version": "0.6.12", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/quick-actions/CHANGELOG.md b/packages/quick-actions/CHANGELOG.md index d030a5ec332..bcd6dd0c1b8 100644 --- a/packages/quick-actions/CHANGELOG.md +++ b/packages/quick-actions/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/quick-actions@0.8.11...@iliad-ui/quick-actions@0.8.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/quick-actions + ## [0.8.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/quick-actions@0.8.10...@iliad-ui/quick-actions@0.8.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/quick-actions diff --git a/packages/quick-actions/package.json b/packages/quick-actions/package.json index 06062f7cbd7..9ffa59797a8 100644 --- a/packages/quick-actions/package.json +++ b/packages/quick-actions/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/quick-actions", - "version": "0.8.11", + "version": "0.8.12", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/radio/CHANGELOG.md b/packages/radio/CHANGELOG.md index 28c01f6784d..535a628feeb 100644 --- a/packages/radio/CHANGELOG.md +++ b/packages/radio/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.15.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/radio@0.15.5...@iliad-ui/radio@0.15.6) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/radio + ## [0.15.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/radio@0.15.4...@iliad-ui/radio@0.15.5) (2022-06-13) **Note:** Version bump only for package @iliad-ui/radio diff --git a/packages/radio/package.json b/packages/radio/package.json index 1a8699d11a8..4fa2e747a02 100644 --- a/packages/radio/package.json +++ b/packages/radio/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/radio", - "version": "0.15.5", + "version": "0.15.6", "publishConfig": { "access": "public" }, @@ -46,9 +46,9 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/field-group": "^0.7.12", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/field-group": "^0.7.13", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 50d6bdda922..3163608ede9 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.18.6...@iliad-ui/react@0.18.7) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/react + ## [0.18.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.18.5...@iliad-ui/react@0.18.6) (2022-06-30) **Note:** Version bump only for package @iliad-ui/react diff --git a/packages/react/package.json b/packages/react/package.json index 4533ee00aa8..960aca7afb7 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/react", - "version": "0.18.6", + "version": "0.18.7", "publishConfig": { "access": "public" }, @@ -42,8 +42,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/bundle": "^0.26.40", - "@iliad-ui/icons": "^0.19.0", + "@iliad-ui/bundle": "^0.26.41", + "@iliad-ui/icons": "^0.19.1", "@lit-labs/react": "^1.0.1", "@types/lodash": "^4.14.175", "@types/react": "^17.0.30", diff --git a/packages/search/CHANGELOG.md b/packages/search/CHANGELOG.md index 2a53c762907..07a8430edf6 100644 --- a/packages/search/CHANGELOG.md +++ b/packages/search/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.16](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/search@0.12.15...@iliad-ui/search@0.12.16) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/search + ## [0.12.15](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/search@0.12.14...@iliad-ui/search@0.12.15) (2022-06-13) **Note:** Version bump only for package @iliad-ui/search diff --git a/packages/search/package.json b/packages/search/package.json index e11d690fdc6..205bc2ac458 100644 --- a/packages/search/package.json +++ b/packages/search/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/search", - "version": "0.12.15", + "version": "0.12.16", "publishConfig": { "access": "public" }, @@ -44,11 +44,11 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/button": "^0.22.6", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/icons-workflow": "^0.12.14", - "@iliad-ui/textfield": "^0.14.15", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/button": "^0.22.7", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/icons-workflow": "^0.12.15", + "@iliad-ui/textfield": "^0.15.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/shared/CHANGELOG.md b/packages/shared/CHANGELOG.md index 0e559d50a10..6fc965b63b2 100644 --- a/packages/shared/CHANGELOG.md +++ b/packages/shared/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/shared@0.18.11...@iliad-ui/shared@0.18.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/shared + ## [0.18.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/shared@0.18.10...@iliad-ui/shared@0.18.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/shared diff --git a/packages/shared/package.json b/packages/shared/package.json index 6c3e8a3d9f5..7987b0f6fe7 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/shared", - "version": "0.18.11", + "version": "0.18.12", "publishConfig": { "access": "public" }, @@ -42,7 +42,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "focus-visible": "^5.1.0", "tslib": "^2.0.0" }, diff --git a/packages/sidenav/CHANGELOG.md b/packages/sidenav/CHANGELOG.md index d146c91861f..f92b18ebb20 100644 --- a/packages/sidenav/CHANGELOG.md +++ b/packages/sidenav/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/sidenav@0.14.11...@iliad-ui/sidenav@0.14.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/sidenav + ## [0.14.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/sidenav@0.14.10...@iliad-ui/sidenav@0.14.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/sidenav diff --git a/packages/sidenav/package.json b/packages/sidenav/package.json index 64bff9c2d21..e5ed730ea07 100644 --- a/packages/sidenav/package.json +++ b/packages/sidenav/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/sidenav", - "version": "0.14.11", + "version": "0.14.12", "publishConfig": { "access": "public" }, @@ -48,8 +48,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/slider/CHANGELOG.md b/packages/slider/CHANGELOG.md index f101dcd4e51..5832cb1eb73 100644 --- a/packages/slider/CHANGELOG.md +++ b/packages/slider/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.17.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/slider@0.17.3...@iliad-ui/slider@0.17.4) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/slider + ## [0.17.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/slider@0.17.2...@iliad-ui/slider@0.17.3) (2022-06-30) **Note:** Version bump only for package @iliad-ui/slider diff --git a/packages/slider/package.json b/packages/slider/package.json index 90b05b19fb6..170404bd63d 100644 --- a/packages/slider/package.json +++ b/packages/slider/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/slider", - "version": "0.17.3", + "version": "0.17.4", "publishConfig": { "access": "public" }, @@ -48,11 +48,11 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/field-label": "^0.9.15", - "@iliad-ui/number-field": "^0.8.2", - "@iliad-ui/shared": "^0.18.11", - "@iliad-ui/theme": "^0.14.15", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/field-label": "^0.9.16", + "@iliad-ui/number-field": "^0.8.3", + "@iliad-ui/shared": "^0.18.12", + "@iliad-ui/theme": "^0.14.16", "@internationalized/number": "^3.0.0", "tslib": "^2.0.0" }, diff --git a/packages/split-button/CHANGELOG.md b/packages/split-button/CHANGELOG.md index 6df001d0990..9e4d499f37c 100644 --- a/packages/split-button/CHANGELOG.md +++ b/packages/split-button/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.30](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.9.29...@iliad-ui/split-button@0.9.30) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/split-button + ## [0.9.29](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.9.28...@iliad-ui/split-button@0.9.29) (2022-06-30) **Note:** Version bump only for package @iliad-ui/split-button diff --git a/packages/split-button/package.json b/packages/split-button/package.json index 07ca7c58713..b73c577dafa 100644 --- a/packages/split-button/package.json +++ b/packages/split-button/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/split-button", - "version": "0.9.29", + "version": "0.9.30", "publishConfig": { "access": "public" }, @@ -46,13 +46,13 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/button": "^0.22.6", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/icons-ui": "^0.12.14", - "@iliad-ui/icons-workflow": "^0.12.14", - "@iliad-ui/overlay": "^0.17.16", - "@iliad-ui/picker": "^0.13.30", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/button": "^0.22.7", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/icons-ui": "^0.12.15", + "@iliad-ui/icons-workflow": "^0.12.15", + "@iliad-ui/overlay": "^0.17.17", + "@iliad-ui/picker": "^0.13.31", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/split-view/CHANGELOG.md b/packages/split-view/CHANGELOG.md index 5e0adae9001..8b2934660d7 100644 --- a/packages/split-view/CHANGELOG.md +++ b/packages/split-view/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-view@0.8.11...@iliad-ui/split-view@0.8.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/split-view + ## [0.8.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-view@0.8.10...@iliad-ui/split-view@0.8.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/split-view diff --git a/packages/split-view/package.json b/packages/split-view/package.json index f83534560a2..2878441006b 100644 --- a/packages/split-view/package.json +++ b/packages/split-view/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/split-view", - "version": "0.8.11", + "version": "0.8.12", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/status-light/CHANGELOG.md b/packages/status-light/CHANGELOG.md index b956d50d448..10af8b333d7 100644 --- a/packages/status-light/CHANGELOG.md +++ b/packages/status-light/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/status-light@0.12.11...@iliad-ui/status-light@0.12.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/status-light + ## [0.12.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/status-light@0.12.10...@iliad-ui/status-light@0.12.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/status-light diff --git a/packages/status-light/package.json b/packages/status-light/package.json index 8a3dd822094..92e394d654e 100644 --- a/packages/status-light/package.json +++ b/packages/status-light/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/status-light", - "version": "0.12.11", + "version": "0.12.12", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/styles/CHANGELOG.md b/packages/styles/CHANGELOG.md index 0d9c43189ea..5c6af47e5b0 100644 --- a/packages/styles/CHANGELOG.md +++ b/packages/styles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/styles@0.16.0...@iliad-ui/styles@0.16.1) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/styles + # [0.16.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/styles@0.15.4...@iliad-ui/styles@0.16.0) (2022-06-30) ### Features diff --git a/packages/styles/package.json b/packages/styles/package.json index 85fce76aa06..792ac2be4aa 100644 --- a/packages/styles/package.json +++ b/packages/styles/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/styles", - "version": "0.16.0", + "version": "0.16.1", "publishConfig": { "access": "public" }, @@ -72,7 +72,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6" + "@iliad-ui/base": "^0.12.0" }, "devDependencies": { "@spectrum-css/commons": "^3.0.2", diff --git a/packages/switch/CHANGELOG.md b/packages/switch/CHANGELOG.md index 9ec44cb3c09..3ee12599b81 100644 --- a/packages/switch/CHANGELOG.md +++ b/packages/switch/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.11.15](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/switch@0.11.14...@iliad-ui/switch@0.11.15) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/switch + ## [0.11.14](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/switch@0.11.13...@iliad-ui/switch@0.11.14) (2022-06-13) **Note:** Version bump only for package @iliad-ui/switch diff --git a/packages/switch/package.json b/packages/switch/package.json index 3045e132c8a..7f3f25338df 100644 --- a/packages/switch/package.json +++ b/packages/switch/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/switch", - "version": "0.11.14", + "version": "0.11.15", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/checkbox": "^0.14.14", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/checkbox": "^0.14.15", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/tabs/CHANGELOG.md b/packages/tabs/CHANGELOG.md index 40eec3b69a7..a89f3119acf 100644 --- a/packages/tabs/CHANGELOG.md +++ b/packages/tabs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tabs@0.12.11...@iliad-ui/tabs@0.12.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/tabs + ## [0.12.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tabs@0.12.10...@iliad-ui/tabs@0.12.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/tabs diff --git a/packages/tabs/package.json b/packages/tabs/package.json index 0b7affb1020..17713196333 100644 --- a/packages/tabs/package.json +++ b/packages/tabs/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/tabs", - "version": "0.12.11", + "version": "0.12.12", "publishConfig": { "access": "public" }, @@ -48,8 +48,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/tags/CHANGELOG.md b/packages/tags/CHANGELOG.md index 4e99f13c957..bc06e20b8ac 100644 --- a/packages/tags/CHANGELOG.md +++ b/packages/tags/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.16](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tags@0.12.15...@iliad-ui/tags@0.12.16) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/tags + ## [0.12.15](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tags@0.12.14...@iliad-ui/tags@0.12.15) (2022-06-13) **Note:** Version bump only for package @iliad-ui/tags diff --git a/packages/tags/package.json b/packages/tags/package.json index c49c82dbfa9..8ab5dbc254f 100644 --- a/packages/tags/package.json +++ b/packages/tags/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/tags", - "version": "0.12.15", + "version": "0.12.16", "publishConfig": { "access": "public" }, @@ -46,9 +46,9 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/button": "^0.22.6", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/button": "^0.22.7", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/textfield/CHANGELOG.md b/packages/textfield/CHANGELOG.md index 58a9837d321..40ecd456f92 100644 --- a/packages/textfield/CHANGELOG.md +++ b/packages/textfield/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.15.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/textfield@0.14.15...@iliad-ui/textfield@0.15.0) (2022-08-05) + +### Features + +- textfield 增加 type ([9781565](https://github.com/gaoding-inc/iliad-ui/commit/9781565d170a4d96bb8fd655fea2c1baac6202bb)) + ## [0.14.15](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/textfield@0.14.14...@iliad-ui/textfield@0.14.15) (2022-06-13) **Note:** Version bump only for package @iliad-ui/textfield diff --git a/packages/textfield/package.json b/packages/textfield/package.json index 6d540f1e1e3..cf30fbec406 100644 --- a/packages/textfield/package.json +++ b/packages/textfield/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/textfield", - "version": "0.14.15", + "version": "0.15.0", "publishConfig": { "access": "public" }, @@ -44,11 +44,11 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/icons-ui": "^0.12.14", - "@iliad-ui/icons-workflow": "^0.12.14", - "@iliad-ui/shared": "^0.18.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/icons-ui": "^0.12.15", + "@iliad-ui/icons-workflow": "^0.12.15", + "@iliad-ui/shared": "^0.18.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/theme/CHANGELOG.md b/packages/theme/CHANGELOG.md index 26b62b14734..ffe4393e990 100644 --- a/packages/theme/CHANGELOG.md +++ b/packages/theme/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.16](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/theme@0.14.15...@iliad-ui/theme@0.14.16) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/theme + ## [0.14.15](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/theme@0.14.14...@iliad-ui/theme@0.14.15) (2022-06-30) **Note:** Version bump only for package @iliad-ui/theme diff --git a/packages/theme/package.json b/packages/theme/package.json index 600c6918fb1..4f38b6464cc 100644 --- a/packages/theme/package.json +++ b/packages/theme/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/theme", - "version": "0.14.15", + "version": "0.14.16", "publishConfig": { "access": "public" }, @@ -56,8 +56,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/styles": "^0.16.0", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/styles": "^0.16.1", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/thumbnail/CHANGELOG.md b/packages/thumbnail/CHANGELOG.md index 11aff0bec8a..d8ab300f2e8 100644 --- a/packages/thumbnail/CHANGELOG.md +++ b/packages/thumbnail/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/thumbnail@0.6.11...@iliad-ui/thumbnail@0.6.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/thumbnail + ## [0.6.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/thumbnail@0.6.10...@iliad-ui/thumbnail@0.6.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/thumbnail diff --git a/packages/thumbnail/package.json b/packages/thumbnail/package.json index cb25b75a923..81be2bfcb1b 100644 --- a/packages/thumbnail/package.json +++ b/packages/thumbnail/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/thumbnail", - "version": "0.6.11", + "version": "0.6.12", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/toast/CHANGELOG.md b/packages/toast/CHANGELOG.md index baf6af555f0..a80c66a59a2 100644 --- a/packages/toast/CHANGELOG.md +++ b/packages/toast/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.17.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/toast@0.17.0...@iliad-ui/toast@0.17.1) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/toast + # [0.17.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/toast@0.16.6...@iliad-ui/toast@0.17.0) (2022-06-13) ### Features diff --git a/packages/toast/package.json b/packages/toast/package.json index ff87c9c6745..53605e52586 100644 --- a/packages/toast/package.json +++ b/packages/toast/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/toast", - "version": "0.17.0", + "version": "0.17.1", "publishConfig": { "access": "public" }, @@ -44,10 +44,10 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/button": "^0.22.6", - "@iliad-ui/icon": "^0.16.8", - "@iliad-ui/icons-workflow": "^0.12.14", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/button": "^0.22.7", + "@iliad-ui/icon": "^0.16.9", + "@iliad-ui/icons-workflow": "^0.12.15", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/tooltip/CHANGELOG.md b/packages/tooltip/CHANGELOG.md index f3c4b8ba3c2..fd9c075138b 100644 --- a/packages/tooltip/CHANGELOG.md +++ b/packages/tooltip/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.17](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tooltip@0.12.16...@iliad-ui/tooltip@0.12.17) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/tooltip + ## [0.12.16](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tooltip@0.12.15...@iliad-ui/tooltip@0.12.16) (2022-06-30) **Note:** Version bump only for package @iliad-ui/tooltip diff --git a/packages/tooltip/package.json b/packages/tooltip/package.json index 39b22726863..5e96d314d16 100644 --- a/packages/tooltip/package.json +++ b/packages/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/tooltip", - "version": "0.12.16", + "version": "0.12.17", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/overlay": "^0.17.16", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/overlay": "^0.17.17", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/top-nav/CHANGELOG.md b/packages/top-nav/CHANGELOG.md index a5aa11fe55b..24b3ad949de 100644 --- a/packages/top-nav/CHANGELOG.md +++ b/packages/top-nav/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/top-nav@0.7.11...@iliad-ui/top-nav@0.7.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/top-nav + ## [0.7.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/top-nav@0.7.10...@iliad-ui/top-nav@0.7.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/top-nav diff --git a/packages/top-nav/package.json b/packages/top-nav/package.json index ac2979cc21a..d71c7de041b 100644 --- a/packages/top-nav/package.json +++ b/packages/top-nav/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/top-nav", - "version": "0.7.11", + "version": "0.7.12", "publishConfig": { "access": "public" }, @@ -46,9 +46,9 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/shared": "^0.18.11", - "@iliad-ui/tabs": "^0.12.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/shared": "^0.18.12", + "@iliad-ui/tabs": "^0.12.12", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/tray/CHANGELOG.md b/packages/tray/CHANGELOG.md index 1544c0109cd..f60ad1382a6 100644 --- a/packages/tray/CHANGELOG.md +++ b/packages/tray/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tray@0.6.11...@iliad-ui/tray@0.6.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/tray + ## [0.6.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tray@0.6.10...@iliad-ui/tray@0.6.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/tray diff --git a/packages/tray/package.json b/packages/tray/package.json index 65a3953bce8..55108b788da 100644 --- a/packages/tray/package.json +++ b/packages/tray/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/tray", - "version": "0.6.11", + "version": "0.6.12", "publishConfig": { "access": "public" }, @@ -44,9 +44,9 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/modal": "^0.7.11", - "@iliad-ui/underlay": "^0.10.11", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/modal": "^0.7.12", + "@iliad-ui/underlay": "^0.10.12", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/tree/CHANGELOG.md b/packages/tree/CHANGELOG.md index ef1427267aa..cfda52f83fc 100644 --- a/packages/tree/CHANGELOG.md +++ b/packages/tree/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tree@0.6.3...@iliad-ui/tree@0.6.4) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/tree + ## [0.6.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tree@0.6.2...@iliad-ui/tree@0.6.3) (2022-06-13) **Note:** Version bump only for package @iliad-ui/tree diff --git a/packages/tree/package.json b/packages/tree/package.json index 2c1bc1629a7..36a22650195 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/tree", - "version": "0.6.3", + "version": "0.6.4", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/underlay/CHANGELOG.md b/packages/underlay/CHANGELOG.md index f96988c4996..79afbc29c75 100644 --- a/packages/underlay/CHANGELOG.md +++ b/packages/underlay/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.12](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/underlay@0.10.11...@iliad-ui/underlay@0.10.12) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/underlay + ## [0.10.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/underlay@0.10.10...@iliad-ui/underlay@0.10.11) (2022-06-13) **Note:** Version bump only for package @iliad-ui/underlay diff --git a/packages/underlay/package.json b/packages/underlay/package.json index 2de0c8c5e1e..5c86cfd0729 100644 --- a/packages/underlay/package.json +++ b/packages/underlay/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/underlay", - "version": "0.10.11", + "version": "0.10.12", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", + "@iliad-ui/base": "^0.12.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/projects/documentation/CHANGELOG.md b/projects/documentation/CHANGELOG.md index 3560bdb3134..9c74d1911d8 100644 --- a/projects/documentation/CHANGELOG.md +++ b/projects/documentation/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.31](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.30...documentation@0.1.31) (2022-08-05) + +**Note:** Version bump only for package documentation + ## [0.1.30](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.29...documentation@0.1.30) (2022-06-30) **Note:** Version bump only for package documentation diff --git a/projects/documentation/package.json b/projects/documentation/package.json index 4a2daf67b21..111720824e6 100644 --- a/projects/documentation/package.json +++ b/projects/documentation/package.json @@ -1,6 +1,6 @@ { "name": "documentation", - "version": "0.1.30", + "version": "0.1.31", "private": true, "description": "The documentation site for Spectrum Web Components", "license": "Apache-2.0", @@ -25,7 +25,7 @@ "watch:serve": "wds --root-dir=dist --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.26.40", + "@iliad-ui/bundle": "^0.26.41", "@spectrum-css/table": "^4.0.5" }, "devDependencies": { diff --git a/projects/example-project-rollup/CHANGELOG.md b/projects/example-project-rollup/CHANGELOG.md index b3eb21d0220..b1746f7afb7 100644 --- a/projects/example-project-rollup/CHANGELOG.md +++ b/projects/example-project-rollup/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.4.30](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.4.29...example-project-rollup@0.4.30) (2022-08-05) + +**Note:** Version bump only for package example-project-rollup + ## [0.4.29](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.4.28...example-project-rollup@0.4.29) (2022-06-30) **Note:** Version bump only for package example-project-rollup diff --git a/projects/example-project-rollup/package.json b/projects/example-project-rollup/package.json index 06d4cbe4f8b..33772fb881b 100644 --- a/projects/example-project-rollup/package.json +++ b/projects/example-project-rollup/package.json @@ -1,6 +1,6 @@ { "name": "example-project-rollup", - "version": "0.4.29", + "version": "0.4.30", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with rollup.", "license": "Apache-2.0", @@ -20,14 +20,14 @@ "tsc:watch": "tsc --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.26.40", - "@iliad-ui/button": "^0.22.6", - "@iliad-ui/field-label": "^0.9.15", - "@iliad-ui/icons": "^0.19.0", - "@iliad-ui/icons-editor": "^0.8.0", - "@iliad-ui/menu": "^0.16.9", - "@iliad-ui/picker": "^0.13.30", - "@iliad-ui/styles": "^0.16.0" + "@iliad-ui/bundle": "^0.26.41", + "@iliad-ui/button": "^0.22.7", + "@iliad-ui/field-label": "^0.9.16", + "@iliad-ui/icons": "^0.19.1", + "@iliad-ui/icons-editor": "^0.8.1", + "@iliad-ui/menu": "^0.16.10", + "@iliad-ui/picker": "^0.13.31", + "@iliad-ui/styles": "^0.16.1" }, "devDependencies": { "@open-wc/building-rollup": "^1.6.3", diff --git a/projects/example-project-webpack/CHANGELOG.md b/projects/example-project-webpack/CHANGELOG.md index 53df12fdc0b..c1a40acabc3 100644 --- a/projects/example-project-webpack/CHANGELOG.md +++ b/projects/example-project-webpack/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.5.63](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.5.62...example-project-webpack@1.5.63) (2022-08-05) + +**Note:** Version bump only for package example-project-webpack + ## [1.5.62](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.5.61...example-project-webpack@1.5.62) (2022-06-30) **Note:** Version bump only for package example-project-webpack diff --git a/projects/example-project-webpack/package.json b/projects/example-project-webpack/package.json index 8cd9520db8c..8fe0c417d60 100644 --- a/projects/example-project-webpack/package.json +++ b/projects/example-project-webpack/package.json @@ -1,6 +1,6 @@ { "name": "example-project-webpack", - "version": "1.5.62", + "version": "1.5.63", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with webpack.", "license": "Apache-2.0", @@ -12,12 +12,12 @@ "serve": "webpack-dev-server" }, "dependencies": { - "@iliad-ui/button": "^0.22.6", - "@iliad-ui/field-label": "^0.9.15", - "@iliad-ui/menu": "^0.16.9", - "@iliad-ui/picker": "^0.13.30", - "@iliad-ui/react": "^0.18.6", - "@iliad-ui/styles": "^0.16.0", + "@iliad-ui/button": "^0.22.7", + "@iliad-ui/field-label": "^0.9.16", + "@iliad-ui/menu": "^0.16.10", + "@iliad-ui/picker": "^0.13.31", + "@iliad-ui/react": "^0.18.7", + "@iliad-ui/styles": "^0.16.1", "lit": "^2.0.0" }, "devDependencies": { diff --git a/projects/story-decorator/CHANGELOG.md b/projects/story-decorator/CHANGELOG.md index 997db9ddc17..dca122940a8 100644 --- a/projects/story-decorator/CHANGELOG.md +++ b/projects/story-decorator/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.30](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.9.29...@iliad-ui/story-decorator@0.9.30) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/story-decorator + ## [0.9.29](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.9.28...@iliad-ui/story-decorator@0.9.29) (2022-06-30) **Note:** Version bump only for package @iliad-ui/story-decorator diff --git a/projects/story-decorator/package.json b/projects/story-decorator/package.json index 01c74dd42ce..2d5c561ddfc 100644 --- a/projects/story-decorator/package.json +++ b/projects/story-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/story-decorator", - "version": "0.9.29", + "version": "0.9.30", "publishConfig": { "access": "public" }, @@ -45,13 +45,13 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/field-label": "^0.9.15", - "@iliad-ui/menu": "^0.16.9", - "@iliad-ui/overlay": "^0.17.16", - "@iliad-ui/picker": "^0.13.30", - "@iliad-ui/switch": "^0.11.14", - "@iliad-ui/theme": "^0.14.15", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/field-label": "^0.9.16", + "@iliad-ui/menu": "^0.16.10", + "@iliad-ui/overlay": "^0.17.17", + "@iliad-ui/picker": "^0.13.31", + "@iliad-ui/switch": "^0.11.15", + "@iliad-ui/theme": "^0.14.16", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/projects/vrt-compare/CHANGELOG.md b/projects/vrt-compare/CHANGELOG.md index 275274be764..c785ba92c4e 100644 --- a/projects/vrt-compare/CHANGELOG.md +++ b/projects/vrt-compare/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.29](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.6.28...@iliad-ui/vrt-compare@0.6.29) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/vrt-compare + ## [0.6.28](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.6.27...@iliad-ui/vrt-compare@0.6.28) (2022-06-30) **Note:** Version bump only for package @iliad-ui/vrt-compare diff --git a/projects/vrt-compare/package.json b/projects/vrt-compare/package.json index 02f7ed734b7..0977d3b3ea9 100644 --- a/projects/vrt-compare/package.json +++ b/projects/vrt-compare/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/vrt-compare", - "version": "0.6.28", + "version": "0.6.29", "publishConfig": { "access": "public" }, @@ -44,14 +44,14 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-bar": "^0.6.28", - "@iliad-ui/action-button": "^0.13.6", - "@iliad-ui/action-group": "^0.11.9", - "@iliad-ui/base": "^0.11.6", - "@iliad-ui/icons-workflow": "^0.12.14", - "@iliad-ui/shared": "^0.18.11", - "@iliad-ui/split-view": "^0.8.11", - "@iliad-ui/styles": "^0.16.0", + "@iliad-ui/action-bar": "^0.6.29", + "@iliad-ui/action-button": "^0.13.7", + "@iliad-ui/action-group": "^0.11.10", + "@iliad-ui/base": "^0.12.0", + "@iliad-ui/icons-workflow": "^0.12.15", + "@iliad-ui/shared": "^0.18.12", + "@iliad-ui/split-view": "^0.8.12", + "@iliad-ui/styles": "^0.16.1", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", From e94d70c125c9a324c18257200875af09f3e2ac07 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Fri, 5 Aug 2022 11:55:11 +0800 Subject: [PATCH 04/28] chore: release new versions - @iliad-ui/accordion@0.9.2 - @iliad-ui/action-bar@0.7.2 - @iliad-ui/action-button@0.14.2 - @iliad-ui/action-group@0.12.2 - @iliad-ui/action-menu@0.16.2 - @iliad-ui/asset@0.9.2 - @iliad-ui/avatar@0.14.2 - @iliad-ui/banner@0.13.2 - @iliad-ui/base@0.12.2 - @iliad-ui/breadcrumb@0.2.2 - @iliad-ui/bundle@0.27.2 - @iliad-ui/button-group@0.11.2 - @iliad-ui/button@0.23.2 - @iliad-ui/card@0.15.2 - @iliad-ui/checkbox@0.15.2 - @iliad-ui/coachmark@0.11.2 - @iliad-ui/color-area@0.9.2 - @iliad-ui/color-handle@0.6.2 - @iliad-ui/color-loupe@0.6.2 - @iliad-ui/color-slider@0.8.2 - @iliad-ui/color-wheel@0.8.2 - @iliad-ui/dialog@0.11.2 - @iliad-ui/divider@0.7.2 - @iliad-ui/dropzone@0.12.2 - @iliad-ui/field-group@0.8.2 - @iliad-ui/field-label@0.10.2 - @iliad-ui/icon@0.17.2 - @iliad-ui/icons-editor@0.9.2 - @iliad-ui/icons-ui@0.13.2 - @iliad-ui/icons-workflow@0.13.2 - @iliad-ui/icons@0.20.2 - @iliad-ui/iconset@0.13.2 - @iliad-ui/illustrated-message@0.11.2 - @iliad-ui/link@0.14.2 - @iliad-ui/menu@0.17.2 - @iliad-ui/meter@0.9.2 - @iliad-ui/modal@0.8.2 - @iliad-ui/number-field@0.9.2 - @iliad-ui/overlay@0.18.2 - @iliad-ui/picker@0.14.2 - @iliad-ui/popover@0.16.2 - @iliad-ui/progress-bar@0.8.2 - @iliad-ui/progress-circle@0.7.2 - @iliad-ui/quick-actions@0.9.2 - @iliad-ui/radio@0.16.2 - @iliad-ui/react@0.19.2 - @iliad-ui/search@0.13.2 - @iliad-ui/shared@0.19.2 - @iliad-ui/sidenav@0.15.2 - @iliad-ui/slider@0.18.2 - @iliad-ui/split-button@0.10.2 - @iliad-ui/split-view@0.9.2 - @iliad-ui/status-light@0.13.2 - @iliad-ui/styles@0.17.2 - @iliad-ui/switch@0.12.2 - @iliad-ui/tabs@0.13.2 - @iliad-ui/tags@0.13.2 - @iliad-ui/textfield@0.15.2 - @iliad-ui/theme@0.15.2 - @iliad-ui/thumbnail@0.7.2 - @iliad-ui/toast@0.18.2 - @iliad-ui/tooltip@0.13.2 - @iliad-ui/top-nav@0.8.2 - @iliad-ui/tray@0.7.2 - @iliad-ui/tree@0.7.2 - @iliad-ui/underlay@0.11.2 - documentation@0.1.33 - example-project-rollup@0.5.2 - example-project-webpack@1.6.2 - @iliad-ui/story-decorator@0.10.2 - swc-templates@0.5.21 - @iliad-ui/vrt-compare@0.7.2 --- packages/accordion/CHANGELOG.md | 4 + packages/accordion/package.json | 10 +- packages/action-bar/CHANGELOG.md | 4 + packages/action-bar/package.json | 6 +- packages/action-button/CHANGELOG.md | 4 + packages/action-button/package.json | 10 +- packages/action-group/CHANGELOG.md | 4 + packages/action-group/package.json | 6 +- packages/action-menu/CHANGELOG.md | 4 + packages/action-menu/package.json | 16 +-- packages/asset/CHANGELOG.md | 4 + packages/asset/package.json | 4 +- packages/avatar/CHANGELOG.md | 4 + packages/avatar/package.json | 4 +- packages/banner/CHANGELOG.md | 4 + packages/banner/package.json | 4 +- packages/base/CHANGELOG.md | 6 + packages/base/package.json | 2 +- packages/breadcrumb/CHANGELOG.md | 4 + packages/breadcrumb/package.json | 4 +- packages/bundle/CHANGELOG.md | 4 + packages/bundle/package.json | 122 +++++++++--------- packages/button-group/CHANGELOG.md | 4 + packages/button-group/package.json | 4 +- packages/button/CHANGELOG.md | 4 + packages/button/package.json | 10 +- packages/card/CHANGELOG.md | 4 + packages/card/package.json | 16 +-- packages/checkbox/CHANGELOG.md | 4 + packages/checkbox/package.json | 10 +- packages/coachmark/CHANGELOG.md | 4 + packages/coachmark/package.json | 4 +- packages/color-area/CHANGELOG.md | 4 + packages/color-area/package.json | 6 +- packages/color-handle/CHANGELOG.md | 4 + packages/color-handle/package.json | 6 +- packages/color-loupe/CHANGELOG.md | 4 + packages/color-loupe/package.json | 4 +- packages/color-slider/CHANGELOG.md | 4 + packages/color-slider/package.json | 8 +- packages/color-wheel/CHANGELOG.md | 4 + packages/color-wheel/package.json | 8 +- packages/dialog/CHANGELOG.md | 4 + packages/dialog/package.json | 24 ++-- packages/divider/CHANGELOG.md | 4 + packages/divider/package.json | 4 +- packages/dropzone/CHANGELOG.md | 4 + packages/dropzone/package.json | 4 +- packages/field-group/CHANGELOG.md | 4 + packages/field-group/package.json | 4 +- packages/field-label/CHANGELOG.md | 4 + packages/field-label/package.json | 10 +- packages/icon/CHANGELOG.md | 4 + packages/icon/package.json | 6 +- packages/icons-editor/CHANGELOG.md | 4 + packages/icons-editor/package.json | 6 +- packages/icons-ui/CHANGELOG.md | 4 + packages/icons-ui/package.json | 8 +- packages/icons-workflow/CHANGELOG.md | 6 + packages/icons-workflow/package.json | 6 +- packages/icons/CHANGELOG.md | 4 + packages/icons/package.json | 6 +- packages/iconset/CHANGELOG.md | 4 + packages/iconset/package.json | 4 +- packages/illustrated-message/CHANGELOG.md | 4 + packages/illustrated-message/package.json | 6 +- packages/link/CHANGELOG.md | 4 + packages/link/package.json | 6 +- packages/menu/CHANGELOG.md | 4 + packages/menu/package.json | 12 +- packages/meter/CHANGELOG.md | 4 + packages/meter/package.json | 8 +- packages/modal/CHANGELOG.md | 4 + packages/modal/package.json | 4 +- packages/number-field/CHANGELOG.md | 4 + packages/number-field/package.json | 12 +- packages/overlay/CHANGELOG.md | 4 + packages/overlay/package.json | 10 +- packages/picker/CHANGELOG.md | 4 + packages/picker/package.json | 20 +-- packages/popover/CHANGELOG.md | 4 + packages/popover/package.json | 8 +- packages/progress-bar/CHANGELOG.md | 4 + packages/progress-bar/package.json | 6 +- packages/progress-circle/CHANGELOG.md | 4 + packages/progress-circle/package.json | 4 +- packages/quick-actions/CHANGELOG.md | 4 + packages/quick-actions/package.json | 4 +- packages/radio/CHANGELOG.md | 4 + packages/radio/package.json | 8 +- packages/react/CHANGELOG.md | 4 + packages/react/package.json | 6 +- packages/search/CHANGELOG.md | 4 + packages/search/package.json | 12 +- packages/shared/CHANGELOG.md | 4 + packages/shared/package.json | 4 +- packages/sidenav/CHANGELOG.md | 4 + packages/sidenav/package.json | 6 +- packages/slider/CHANGELOG.md | 4 + packages/slider/package.json | 12 +- packages/split-button/CHANGELOG.md | 4 + packages/split-button/package.json | 16 +-- packages/split-view/CHANGELOG.md | 4 + packages/split-view/package.json | 4 +- packages/status-light/CHANGELOG.md | 4 + packages/status-light/package.json | 4 +- packages/styles/CHANGELOG.md | 4 + packages/styles/package.json | 4 +- packages/switch/CHANGELOG.md | 4 + packages/switch/package.json | 6 +- packages/tabs/CHANGELOG.md | 4 + packages/tabs/package.json | 6 +- packages/tags/CHANGELOG.md | 4 + packages/tags/package.json | 8 +- packages/textfield/CHANGELOG.md | 6 + packages/textfield/package.json | 12 +- packages/theme/CHANGELOG.md | 4 + packages/theme/package.json | 6 +- packages/thumbnail/CHANGELOG.md | 4 + packages/thumbnail/package.json | 4 +- packages/toast/CHANGELOG.md | 4 + packages/toast/package.json | 10 +- packages/tooltip/CHANGELOG.md | 4 + packages/tooltip/package.json | 6 +- packages/top-nav/CHANGELOG.md | 4 + packages/top-nav/package.json | 8 +- packages/tray/CHANGELOG.md | 4 + packages/tray/package.json | 8 +- packages/tree/CHANGELOG.md | 4 + packages/tree/package.json | 4 +- packages/underlay/CHANGELOG.md | 4 + packages/underlay/package.json | 4 +- projects/documentation/CHANGELOG.md | 4 + projects/documentation/package.json | 4 +- projects/example-project-rollup/CHANGELOG.md | 4 + projects/example-project-rollup/package.json | 18 +-- projects/example-project-webpack/CHANGELOG.md | 4 + projects/example-project-webpack/package.json | 14 +- projects/story-decorator/CHANGELOG.md | 4 + projects/story-decorator/package.json | 16 +-- projects/templates/CHANGELOG.md | 4 + projects/templates/package.json | 2 +- projects/vrt-compare/CHANGELOG.md | 4 + projects/vrt-compare/package.json | 18 +-- 144 files changed, 632 insertions(+), 338 deletions(-) diff --git a/packages/accordion/CHANGELOG.md b/packages/accordion/CHANGELOG.md index cb5e8644137..54e1ebd5f2b 100644 --- a/packages/accordion/CHANGELOG.md +++ b/packages/accordion/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/accordion@0.8.15...@iliad-ui/accordion@0.9.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/accordion + ## [0.9.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/accordion@0.9.0...@iliad-ui/accordion@0.9.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/accordion diff --git a/packages/accordion/package.json b/packages/accordion/package.json index edf46c8bd51..7566661c639 100644 --- a/packages/accordion/package.json +++ b/packages/accordion/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/accordion", - "version": "0.9.1", + "version": "0.9.2", "publishConfig": { "access": "public" }, @@ -46,10 +46,10 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/icons-ui": "^0.13.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/icons-ui": "^0.13.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/action-bar/CHANGELOG.md b/packages/action-bar/CHANGELOG.md index c151eb912a9..48c2e078932 100644 --- a/packages/action-bar/CHANGELOG.md +++ b/packages/action-bar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.6.29...@iliad-ui/action-bar@0.7.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/action-bar + ## [0.7.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.7.0...@iliad-ui/action-bar@0.7.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/action-bar diff --git a/packages/action-bar/package.json b/packages/action-bar/package.json index 247d4791005..540a0fb9026 100644 --- a/packages/action-bar/package.json +++ b/packages/action-bar/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-bar", - "version": "0.7.1", + "version": "0.7.2", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/popover": "^0.16.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/popover": "^0.16.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/action-button/CHANGELOG.md b/packages/action-button/CHANGELOG.md index 59001cde346..53aed56c336 100644 --- a/packages/action-button/CHANGELOG.md +++ b/packages/action-button/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-button@0.13.7...@iliad-ui/action-button@0.14.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/action-button + ## [0.14.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-button@0.14.0...@iliad-ui/action-button@0.14.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/action-button diff --git a/packages/action-button/package.json b/packages/action-button/package.json index ecaeb7a427e..066757cf793 100644 --- a/packages/action-button/package.json +++ b/packages/action-button/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-button", - "version": "0.14.1", + "version": "0.14.2", "publishConfig": { "access": "public" }, @@ -44,10 +44,10 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/button": "^0.23.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/icons-ui": "^0.13.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/button": "^0.23.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/icons-ui": "^0.13.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/action-group/CHANGELOG.md b/packages/action-group/CHANGELOG.md index 25f7abc25c0..cc66fe46564 100644 --- a/packages/action-group/CHANGELOG.md +++ b/packages/action-group/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-group@0.11.10...@iliad-ui/action-group@0.12.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/action-group + ## [0.12.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-group@0.12.0...@iliad-ui/action-group@0.12.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/action-group diff --git a/packages/action-group/package.json b/packages/action-group/package.json index 1706c000fbc..f7a2e16bb45 100644 --- a/packages/action-group/package.json +++ b/packages/action-group/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-group", - "version": "0.12.1", + "version": "0.12.2", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.14.1", - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/action-button": "^0.14.2", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/action-menu/CHANGELOG.md b/packages/action-menu/CHANGELOG.md index 2d1bcaf4979..651e9fa915a 100644 --- a/packages/action-menu/CHANGELOG.md +++ b/packages/action-menu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.15.31...@iliad-ui/action-menu@0.16.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/action-menu + ## [0.16.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.16.0...@iliad-ui/action-menu@0.16.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/action-menu diff --git a/packages/action-menu/package.json b/packages/action-menu/package.json index 97c525c0cda..5dffe73f05e 100644 --- a/packages/action-menu/package.json +++ b/packages/action-menu/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-menu", - "version": "0.16.1", + "version": "0.16.2", "publishConfig": { "access": "public" }, @@ -46,13 +46,13 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.14.1", - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/icons-workflow": "^0.13.1", - "@iliad-ui/menu": "^0.17.1", - "@iliad-ui/picker": "^0.14.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/action-button": "^0.14.2", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/icons-workflow": "^0.13.2", + "@iliad-ui/menu": "^0.17.2", + "@iliad-ui/picker": "^0.14.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/asset/CHANGELOG.md b/packages/asset/CHANGELOG.md index 61d25ec08e0..8f2b8f898aa 100644 --- a/packages/asset/CHANGELOG.md +++ b/packages/asset/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/asset@0.8.12...@iliad-ui/asset@0.9.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/asset + ## [0.9.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/asset@0.9.0...@iliad-ui/asset@0.9.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/asset diff --git a/packages/asset/package.json b/packages/asset/package.json index 8785dbe7178..c0f9d872539 100644 --- a/packages/asset/package.json +++ b/packages/asset/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/asset", - "version": "0.9.1", + "version": "0.9.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/avatar/CHANGELOG.md b/packages/avatar/CHANGELOG.md index 77bcdf1cb20..66f543c4e2f 100644 --- a/packages/avatar/CHANGELOG.md +++ b/packages/avatar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/avatar@0.13.12...@iliad-ui/avatar@0.14.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/avatar + ## [0.14.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/avatar@0.14.0...@iliad-ui/avatar@0.14.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/avatar diff --git a/packages/avatar/package.json b/packages/avatar/package.json index ce7061cc7da..2b4cb65eea8 100644 --- a/packages/avatar/package.json +++ b/packages/avatar/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/avatar", - "version": "0.14.1", + "version": "0.14.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/banner/CHANGELOG.md b/packages/banner/CHANGELOG.md index 6dd8d953e7c..865e0598a33 100644 --- a/packages/banner/CHANGELOG.md +++ b/packages/banner/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/banner@0.12.12...@iliad-ui/banner@0.13.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/banner + ## [0.13.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/banner@0.13.0...@iliad-ui/banner@0.13.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/banner diff --git a/packages/banner/package.json b/packages/banner/package.json index 7440f6efbe2..0d216c31b39 100644 --- a/packages/banner/package.json +++ b/packages/banner/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/banner", - "version": "0.13.1", + "version": "0.13.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/base/CHANGELOG.md b/packages/base/CHANGELOG.md index b678ce07ba7..d8a9960144b 100644 --- a/packages/base/CHANGELOG.md +++ b/packages/base/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/base@0.12.1...@iliad-ui/base@0.12.2) (2022-08-05) + +### Features + +- textfield 增加 type ([9781565](https://github.com/gaoding-inc/iliad-ui/commit/9781565d170a4d96bb8fd655fea2c1baac6202bb)) + ## [0.12.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/base@0.12.0...@iliad-ui/base@0.12.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/base diff --git a/packages/base/package.json b/packages/base/package.json index 31b8f6bd1a1..c01675bd4a9 100644 --- a/packages/base/package.json +++ b/packages/base/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/base", - "version": "0.12.1", + "version": "0.12.2", "publishConfig": { "access": "public" }, diff --git a/packages/breadcrumb/CHANGELOG.md b/packages/breadcrumb/CHANGELOG.md index 62cdf052508..cb3bf8ac91f 100644 --- a/packages/breadcrumb/CHANGELOG.md +++ b/packages/breadcrumb/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.2.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/breadcrumb@0.1.13...@iliad-ui/breadcrumb@0.2.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/breadcrumb + ## [0.2.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/breadcrumb@0.2.0...@iliad-ui/breadcrumb@0.2.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/breadcrumb diff --git a/packages/breadcrumb/package.json b/packages/breadcrumb/package.json index f67b5e9d9ea..da6beb1b6a3 100644 --- a/packages/breadcrumb/package.json +++ b/packages/breadcrumb/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/breadcrumb", - "version": "0.2.1", + "version": "0.2.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/bundle/CHANGELOG.md b/packages/bundle/CHANGELOG.md index c2c034004b8..2551a686318 100644 --- a/packages/bundle/CHANGELOG.md +++ b/packages/bundle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.27.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.26.41...@iliad-ui/bundle@0.27.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/bundle + ## [0.27.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.0...@iliad-ui/bundle@0.27.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/bundle diff --git a/packages/bundle/package.json b/packages/bundle/package.json index 88dde5dff13..7e5e5fc6be9 100644 --- a/packages/bundle/package.json +++ b/packages/bundle/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/bundle", - "version": "0.27.1", + "version": "0.27.2", "publishConfig": { "access": "public" }, @@ -46,66 +46,66 @@ "lit-html" ], "dependencies": { - "@iliad-ui/accordion": "^0.9.1", - "@iliad-ui/action-bar": "^0.7.1", - "@iliad-ui/action-button": "^0.14.1", - "@iliad-ui/action-group": "^0.12.1", - "@iliad-ui/action-menu": "^0.16.1", - "@iliad-ui/asset": "^0.9.1", - "@iliad-ui/avatar": "^0.14.1", - "@iliad-ui/banner": "^0.13.1", - "@iliad-ui/breadcrumb": "^0.2.1", - "@iliad-ui/button": "^0.23.1", - "@iliad-ui/button-group": "^0.11.1", - "@iliad-ui/card": "^0.15.1", - "@iliad-ui/checkbox": "^0.15.1", - "@iliad-ui/coachmark": "^0.11.1", - "@iliad-ui/color-area": "^0.9.1", - "@iliad-ui/color-handle": "^0.6.1", - "@iliad-ui/color-loupe": "^0.6.1", - "@iliad-ui/color-slider": "^0.8.1", - "@iliad-ui/color-wheel": "^0.8.1", - "@iliad-ui/dialog": "^0.11.1", - "@iliad-ui/divider": "^0.7.1", - "@iliad-ui/dropzone": "^0.12.1", - "@iliad-ui/field-group": "^0.8.1", - "@iliad-ui/field-label": "^0.10.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/icons": "^0.20.1", - "@iliad-ui/icons-editor": "^0.9.1", - "@iliad-ui/icons-ui": "^0.13.1", - "@iliad-ui/icons-workflow": "^0.13.1", - "@iliad-ui/iconset": "^0.13.1", - "@iliad-ui/illustrated-message": "^0.11.1", - "@iliad-ui/link": "^0.14.1", - "@iliad-ui/menu": "^0.17.1", - "@iliad-ui/meter": "^0.9.1", - "@iliad-ui/number-field": "^0.9.1", - "@iliad-ui/overlay": "^0.18.1", - "@iliad-ui/picker": "^0.14.1", - "@iliad-ui/popover": "^0.16.1", - "@iliad-ui/progress-bar": "^0.8.1", - "@iliad-ui/progress-circle": "^0.7.1", - "@iliad-ui/quick-actions": "^0.9.1", - "@iliad-ui/radio": "^0.16.1", - "@iliad-ui/search": "^0.13.1", - "@iliad-ui/sidenav": "^0.15.1", - "@iliad-ui/slider": "^0.18.1", - "@iliad-ui/split-button": "^0.10.1", - "@iliad-ui/split-view": "^0.9.1", - "@iliad-ui/status-light": "^0.13.1", - "@iliad-ui/switch": "^0.12.1", - "@iliad-ui/tabs": "^0.13.1", - "@iliad-ui/tags": "^0.13.1", - "@iliad-ui/textfield": "^0.15.1", - "@iliad-ui/theme": "^0.15.1", - "@iliad-ui/thumbnail": "^0.7.1", - "@iliad-ui/toast": "^0.18.1", - "@iliad-ui/tooltip": "^0.13.1", - "@iliad-ui/top-nav": "^0.8.1", - "@iliad-ui/tray": "^0.7.1", - "@iliad-ui/tree": "^0.7.1", - "@iliad-ui/underlay": "^0.11.1", + "@iliad-ui/accordion": "^0.9.2", + "@iliad-ui/action-bar": "^0.7.2", + "@iliad-ui/action-button": "^0.14.2", + "@iliad-ui/action-group": "^0.12.2", + "@iliad-ui/action-menu": "^0.16.2", + "@iliad-ui/asset": "^0.9.2", + "@iliad-ui/avatar": "^0.14.2", + "@iliad-ui/banner": "^0.13.2", + "@iliad-ui/breadcrumb": "^0.2.2", + "@iliad-ui/button": "^0.23.2", + "@iliad-ui/button-group": "^0.11.2", + "@iliad-ui/card": "^0.15.2", + "@iliad-ui/checkbox": "^0.15.2", + "@iliad-ui/coachmark": "^0.11.2", + "@iliad-ui/color-area": "^0.9.2", + "@iliad-ui/color-handle": "^0.6.2", + "@iliad-ui/color-loupe": "^0.6.2", + "@iliad-ui/color-slider": "^0.8.2", + "@iliad-ui/color-wheel": "^0.8.2", + "@iliad-ui/dialog": "^0.11.2", + "@iliad-ui/divider": "^0.7.2", + "@iliad-ui/dropzone": "^0.12.2", + "@iliad-ui/field-group": "^0.8.2", + "@iliad-ui/field-label": "^0.10.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/icons": "^0.20.2", + "@iliad-ui/icons-editor": "^0.9.2", + "@iliad-ui/icons-ui": "^0.13.2", + "@iliad-ui/icons-workflow": "^0.13.2", + "@iliad-ui/iconset": "^0.13.2", + "@iliad-ui/illustrated-message": "^0.11.2", + "@iliad-ui/link": "^0.14.2", + "@iliad-ui/menu": "^0.17.2", + "@iliad-ui/meter": "^0.9.2", + "@iliad-ui/number-field": "^0.9.2", + "@iliad-ui/overlay": "^0.18.2", + "@iliad-ui/picker": "^0.14.2", + "@iliad-ui/popover": "^0.16.2", + "@iliad-ui/progress-bar": "^0.8.2", + "@iliad-ui/progress-circle": "^0.7.2", + "@iliad-ui/quick-actions": "^0.9.2", + "@iliad-ui/radio": "^0.16.2", + "@iliad-ui/search": "^0.13.2", + "@iliad-ui/sidenav": "^0.15.2", + "@iliad-ui/slider": "^0.18.2", + "@iliad-ui/split-button": "^0.10.2", + "@iliad-ui/split-view": "^0.9.2", + "@iliad-ui/status-light": "^0.13.2", + "@iliad-ui/switch": "^0.12.2", + "@iliad-ui/tabs": "^0.13.2", + "@iliad-ui/tags": "^0.13.2", + "@iliad-ui/textfield": "^0.15.2", + "@iliad-ui/theme": "^0.15.2", + "@iliad-ui/thumbnail": "^0.7.2", + "@iliad-ui/toast": "^0.18.2", + "@iliad-ui/tooltip": "^0.13.2", + "@iliad-ui/top-nav": "^0.8.2", + "@iliad-ui/tray": "^0.7.2", + "@iliad-ui/tree": "^0.7.2", + "@iliad-ui/underlay": "^0.11.2", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/button-group/CHANGELOG.md b/packages/button-group/CHANGELOG.md index b80704586c9..8fcc83c2c39 100644 --- a/packages/button-group/CHANGELOG.md +++ b/packages/button-group/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.11.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/button-group@0.10.15...@iliad-ui/button-group@0.11.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/button-group + ## [0.11.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/button-group@0.11.0...@iliad-ui/button-group@0.11.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/button-group diff --git a/packages/button-group/package.json b/packages/button-group/package.json index a5a0de5a33f..db00b0f19d5 100644 --- a/packages/button-group/package.json +++ b/packages/button-group/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/button-group", - "version": "0.11.1", + "version": "0.11.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/button/CHANGELOG.md b/packages/button/CHANGELOG.md index 736c4473936..18373edb6de 100644 --- a/packages/button/CHANGELOG.md +++ b/packages/button/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.23.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/button@0.22.7...@iliad-ui/button@0.23.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/button + ## [0.23.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/button@0.23.0...@iliad-ui/button@0.23.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/button diff --git a/packages/button/package.json b/packages/button/package.json index 5500d809e7f..c1c5fdb3458 100644 --- a/packages/button/package.json +++ b/packages/button/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/button", - "version": "0.23.1", + "version": "0.23.2", "publishConfig": { "access": "public" }, @@ -46,10 +46,10 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/icons-ui": "^0.13.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/icons-ui": "^0.13.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/card/CHANGELOG.md b/packages/card/CHANGELOG.md index 95c7fcb88ca..309ee573c1d 100644 --- a/packages/card/CHANGELOG.md +++ b/packages/card/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.15.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/card@0.14.17...@iliad-ui/card@0.15.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/card + ## [0.15.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/card@0.15.0...@iliad-ui/card@0.15.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/card diff --git a/packages/card/package.json b/packages/card/package.json index a3f79cd95b0..9d732ad06f2 100644 --- a/packages/card/package.json +++ b/packages/card/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/card", - "version": "0.15.1", + "version": "0.15.2", "publishConfig": { "access": "public" }, @@ -44,13 +44,13 @@ "lit-html" ], "dependencies": { - "@iliad-ui/asset": "^0.9.1", - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/checkbox": "^0.15.1", - "@iliad-ui/icons-workflow": "^0.13.1", - "@iliad-ui/quick-actions": "^0.9.1", - "@iliad-ui/shared": "^0.19.1", - "@iliad-ui/styles": "^0.17.1", + "@iliad-ui/asset": "^0.9.2", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/checkbox": "^0.15.2", + "@iliad-ui/icons-workflow": "^0.13.2", + "@iliad-ui/quick-actions": "^0.9.2", + "@iliad-ui/shared": "^0.19.2", + "@iliad-ui/styles": "^0.17.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/checkbox/CHANGELOG.md b/packages/checkbox/CHANGELOG.md index 79d0ead735b..e0629292d20 100644 --- a/packages/checkbox/CHANGELOG.md +++ b/packages/checkbox/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.15.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/checkbox@0.14.15...@iliad-ui/checkbox@0.15.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/checkbox + ## [0.15.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/checkbox@0.15.0...@iliad-ui/checkbox@0.15.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/checkbox diff --git a/packages/checkbox/package.json b/packages/checkbox/package.json index 236044df919..fecb902afbc 100644 --- a/packages/checkbox/package.json +++ b/packages/checkbox/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/checkbox", - "version": "0.15.1", + "version": "0.15.2", "publishConfig": { "access": "public" }, @@ -44,10 +44,10 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/icons-ui": "^0.13.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/icons-ui": "^0.13.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/coachmark/CHANGELOG.md b/packages/coachmark/CHANGELOG.md index 0ddcfc9b57c..e899ee22867 100644 --- a/packages/coachmark/CHANGELOG.md +++ b/packages/coachmark/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.11.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/coachmark@0.10.12...@iliad-ui/coachmark@0.11.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/coachmark + ## [0.11.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/coachmark@0.11.0...@iliad-ui/coachmark@0.11.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/coachmark diff --git a/packages/coachmark/package.json b/packages/coachmark/package.json index 1d2eefe6028..58ad650156a 100644 --- a/packages/coachmark/package.json +++ b/packages/coachmark/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/coachmark", - "version": "0.11.1", + "version": "0.11.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/color-area/CHANGELOG.md b/packages/color-area/CHANGELOG.md index 168ddba9d02..198f438f730 100644 --- a/packages/color-area/CHANGELOG.md +++ b/packages/color-area/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-area@0.8.13...@iliad-ui/color-area@0.9.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/color-area + ## [0.9.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-area@0.9.0...@iliad-ui/color-area@0.9.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/color-area diff --git a/packages/color-area/package.json b/packages/color-area/package.json index bc87f75f1cb..e93b23ff845 100644 --- a/packages/color-area/package.json +++ b/packages/color-area/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/color-area", - "version": "0.9.1", + "version": "0.9.2", "publishConfig": { "access": "public" }, @@ -45,8 +45,8 @@ ], "dependencies": { "@ctrl/tinycolor": "^3.3.3", - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/color-handle": "^0.6.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/color-handle": "^0.6.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/color-handle/CHANGELOG.md b/packages/color-handle/CHANGELOG.md index accce2b4f50..c6d90544869 100644 --- a/packages/color-handle/CHANGELOG.md +++ b/packages/color-handle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-handle@0.5.13...@iliad-ui/color-handle@0.6.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/color-handle + ## [0.6.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-handle@0.6.0...@iliad-ui/color-handle@0.6.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/color-handle diff --git a/packages/color-handle/package.json b/packages/color-handle/package.json index 1cf7bac655e..c042a7a78d7 100644 --- a/packages/color-handle/package.json +++ b/packages/color-handle/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/color-handle", - "version": "0.6.1", + "version": "0.6.2", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/color-loupe": "^0.6.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/color-loupe": "^0.6.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/color-loupe/CHANGELOG.md b/packages/color-loupe/CHANGELOG.md index 3e5e696f835..e7dd27537d2 100644 --- a/packages/color-loupe/CHANGELOG.md +++ b/packages/color-loupe/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-loupe@0.5.12...@iliad-ui/color-loupe@0.6.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/color-loupe + ## [0.6.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-loupe@0.6.0...@iliad-ui/color-loupe@0.6.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/color-loupe diff --git a/packages/color-loupe/package.json b/packages/color-loupe/package.json index f4d474f83c6..239ef1984ef 100644 --- a/packages/color-loupe/package.json +++ b/packages/color-loupe/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/color-loupe", - "version": "0.6.1", + "version": "0.6.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/color-slider/CHANGELOG.md b/packages/color-slider/CHANGELOG.md index fb8cbf2eedd..4047248e92d 100644 --- a/packages/color-slider/CHANGELOG.md +++ b/packages/color-slider/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-slider@0.7.13...@iliad-ui/color-slider@0.8.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/color-slider + ## [0.8.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-slider@0.8.0...@iliad-ui/color-slider@0.8.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/color-slider diff --git a/packages/color-slider/package.json b/packages/color-slider/package.json index 4c6fe8cab03..7ed429168d4 100644 --- a/packages/color-slider/package.json +++ b/packages/color-slider/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/color-slider", - "version": "0.8.1", + "version": "0.8.2", "publishConfig": { "access": "public" }, @@ -45,9 +45,9 @@ ], "dependencies": { "@ctrl/tinycolor": "^3.3.3", - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/color-handle": "^0.6.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/color-handle": "^0.6.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/color-wheel/CHANGELOG.md b/packages/color-wheel/CHANGELOG.md index 73dd6e29af7..4f6ad824eef 100644 --- a/packages/color-wheel/CHANGELOG.md +++ b/packages/color-wheel/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-wheel@0.7.12...@iliad-ui/color-wheel@0.8.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/color-wheel + ## [0.8.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/color-wheel@0.8.0...@iliad-ui/color-wheel@0.8.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/color-wheel diff --git a/packages/color-wheel/package.json b/packages/color-wheel/package.json index c8b64f123d5..a8a1e3a2391 100644 --- a/packages/color-wheel/package.json +++ b/packages/color-wheel/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/color-wheel", - "version": "0.8.1", + "version": "0.8.2", "publishConfig": { "access": "public" }, @@ -45,9 +45,9 @@ ], "dependencies": { "@ctrl/tinycolor": "^3.3.3", - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/color-handle": "^0.6.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/color-handle": "^0.6.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/dialog/CHANGELOG.md b/packages/dialog/CHANGELOG.md index c4a66cb199a..cc982d5a6bc 100644 --- a/packages/dialog/CHANGELOG.md +++ b/packages/dialog/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.11.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/dialog@0.10.17...@iliad-ui/dialog@0.11.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/dialog + ## [0.11.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/dialog@0.11.0...@iliad-ui/dialog@0.11.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/dialog diff --git a/packages/dialog/package.json b/packages/dialog/package.json index f66bd3949a0..75389c8a0ab 100644 --- a/packages/dialog/package.json +++ b/packages/dialog/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/dialog", - "version": "0.11.1", + "version": "0.11.2", "publishConfig": { "access": "public" }, @@ -46,17 +46,17 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.14.1", - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/button": "^0.23.1", - "@iliad-ui/button-group": "^0.11.1", - "@iliad-ui/divider": "^0.7.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/icons-ui": "^0.13.1", - "@iliad-ui/icons-workflow": "^0.13.1", - "@iliad-ui/modal": "^0.8.1", - "@iliad-ui/shared": "^0.19.1", - "@iliad-ui/underlay": "^0.11.1", + "@iliad-ui/action-button": "^0.14.2", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/button": "^0.23.2", + "@iliad-ui/button-group": "^0.11.2", + "@iliad-ui/divider": "^0.7.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/icons-ui": "^0.13.2", + "@iliad-ui/icons-workflow": "^0.13.2", + "@iliad-ui/modal": "^0.8.2", + "@iliad-ui/shared": "^0.19.2", + "@iliad-ui/underlay": "^0.11.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/divider/CHANGELOG.md b/packages/divider/CHANGELOG.md index b811c5fa9da..8cede7e6b4a 100644 --- a/packages/divider/CHANGELOG.md +++ b/packages/divider/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/divider@0.6.13...@iliad-ui/divider@0.7.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/divider + ## [0.7.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/divider@0.7.0...@iliad-ui/divider@0.7.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/divider diff --git a/packages/divider/package.json b/packages/divider/package.json index 20dd181ce0d..adc64b31743 100644 --- a/packages/divider/package.json +++ b/packages/divider/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/divider", - "version": "0.7.1", + "version": "0.7.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/dropzone/CHANGELOG.md b/packages/dropzone/CHANGELOG.md index 42060ffb37c..d660d082ac5 100644 --- a/packages/dropzone/CHANGELOG.md +++ b/packages/dropzone/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/dropzone@0.11.12...@iliad-ui/dropzone@0.12.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/dropzone + ## [0.12.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/dropzone@0.12.0...@iliad-ui/dropzone@0.12.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/dropzone diff --git a/packages/dropzone/package.json b/packages/dropzone/package.json index 557185543e7..bc4326991cb 100644 --- a/packages/dropzone/package.json +++ b/packages/dropzone/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/dropzone", - "version": "0.12.1", + "version": "0.12.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/field-group/CHANGELOG.md b/packages/field-group/CHANGELOG.md index 7c3f3b78e2d..8b555353f54 100644 --- a/packages/field-group/CHANGELOG.md +++ b/packages/field-group/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/field-group@0.7.13...@iliad-ui/field-group@0.8.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/field-group + ## [0.8.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/field-group@0.8.0...@iliad-ui/field-group@0.8.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/field-group diff --git a/packages/field-group/package.json b/packages/field-group/package.json index 28324462c81..9eb5af805c0 100644 --- a/packages/field-group/package.json +++ b/packages/field-group/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/field-group", - "version": "0.8.1", + "version": "0.8.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/field-label/CHANGELOG.md b/packages/field-label/CHANGELOG.md index cfd0fcd0867..7b04fdea3d3 100644 --- a/packages/field-label/CHANGELOG.md +++ b/packages/field-label/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/field-label@0.9.16...@iliad-ui/field-label@0.10.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/field-label + ## [0.10.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/field-label@0.10.0...@iliad-ui/field-label@0.10.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/field-label diff --git a/packages/field-label/package.json b/packages/field-label/package.json index 6daad810b71..add11b0f2c8 100644 --- a/packages/field-label/package.json +++ b/packages/field-label/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/field-label", - "version": "0.10.1", + "version": "0.10.2", "publishConfig": { "access": "public" }, @@ -44,10 +44,10 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/icons-ui": "^0.13.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/icons-ui": "^0.13.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/icon/CHANGELOG.md b/packages/icon/CHANGELOG.md index 83a73bcebb0..b28ced7a813 100644 --- a/packages/icon/CHANGELOG.md +++ b/packages/icon/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.17.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icon@0.17.1...@iliad-ui/icon@0.17.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/icon + ## [0.17.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icon@0.17.0...@iliad-ui/icon@0.17.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/icon diff --git a/packages/icon/package.json b/packages/icon/package.json index dc739da9303..155e9691695 100644 --- a/packages/icon/package.json +++ b/packages/icon/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icon", - "version": "0.17.1", + "version": "0.17.2", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/iconset": "^0.13.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/iconset": "^0.13.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/icons-editor/CHANGELOG.md b/packages/icons-editor/CHANGELOG.md index 0d8ce0a8331..ca98d62de40 100644 --- a/packages/icons-editor/CHANGELOG.md +++ b/packages/icons-editor/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.9.1...@iliad-ui/icons-editor@0.9.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/icons-editor + ## [0.9.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.9.0...@iliad-ui/icons-editor@0.9.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/icons-editor diff --git a/packages/icons-editor/package.json b/packages/icons-editor/package.json index 7d14aabdd0c..a6a76948bf6 100644 --- a/packages/icons-editor/package.json +++ b/packages/icons-editor/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons-editor", - "version": "0.9.1", + "version": "0.9.2", "publishConfig": { "access": "public" }, @@ -45,8 +45,8 @@ "figma" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/icon": "^0.17.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/icon": "^0.17.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/icons-ui/CHANGELOG.md b/packages/icons-ui/CHANGELOG.md index 9582501b5c7..a9f43d8be06 100644 --- a/packages/icons-ui/CHANGELOG.md +++ b/packages/icons-ui/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-ui@0.13.1...@iliad-ui/icons-ui@0.13.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/icons-ui + ## [0.13.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-ui@0.13.0...@iliad-ui/icons-ui@0.13.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/icons-ui diff --git a/packages/icons-ui/package.json b/packages/icons-ui/package.json index c9f2f9abb17..d7a70e46bdc 100644 --- a/packages/icons-ui/package.json +++ b/packages/icons-ui/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons-ui", - "version": "0.13.1", + "version": "0.13.2", "publishConfig": { "access": "public" }, @@ -44,9 +44,9 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/iconset": "^0.13.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/iconset": "^0.13.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/icons-workflow/CHANGELOG.md b/packages/icons-workflow/CHANGELOG.md index ee1a370ffb2..2fe12a7fb46 100644 --- a/packages/icons-workflow/CHANGELOG.md +++ b/packages/icons-workflow/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-workflow@0.12.15...@iliad-ui/icons-workflow@0.13.2) (2022-08-05) + +### Bug Fixes + +- ts build error ([15658f7](https://github.com/gaoding-inc/iliad-ui/commit/15658f714fde0cff206d844ee41e2b90ec92232c)) + ## [0.13.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-workflow@0.13.0...@iliad-ui/icons-workflow@0.13.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/icons-workflow diff --git a/packages/icons-workflow/package.json b/packages/icons-workflow/package.json index 64946933828..eda3c592792 100644 --- a/packages/icons-workflow/package.json +++ b/packages/icons-workflow/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons-workflow", - "version": "0.13.1", + "version": "0.13.2", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/icon": "^0.17.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/icon": "^0.17.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index 7cf7c473f26..bf616aa7bf8 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.20.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.19.1...@iliad-ui/icons@0.20.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/icons + ## [0.20.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.20.0...@iliad-ui/icons@0.20.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/icons diff --git a/packages/icons/package.json b/packages/icons/package.json index 6a8f4ecdf45..078b0cfeaf7 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons", - "version": "0.20.1", + "version": "0.20.2", "publishConfig": { "access": "public" }, @@ -48,8 +48,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/iconset": "^0.13.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/iconset": "^0.13.2", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/iconset/CHANGELOG.md b/packages/iconset/CHANGELOG.md index b4e3be39321..33a638551cb 100644 --- a/packages/iconset/CHANGELOG.md +++ b/packages/iconset/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/iconset@0.12.6...@iliad-ui/iconset@0.13.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/iconset + ## [0.13.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/iconset@0.13.0...@iliad-ui/iconset@0.13.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/iconset diff --git a/packages/iconset/package.json b/packages/iconset/package.json index 4d0775babb2..611142fdc9d 100644 --- a/packages/iconset/package.json +++ b/packages/iconset/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/iconset", - "version": "0.13.1", + "version": "0.13.2", "publishConfig": { "access": "public" }, @@ -41,7 +41,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/illustrated-message/CHANGELOG.md b/packages/illustrated-message/CHANGELOG.md index e215a622aa3..a0b27fa99d9 100644 --- a/packages/illustrated-message/CHANGELOG.md +++ b/packages/illustrated-message/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.11.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/illustrated-message@0.10.15...@iliad-ui/illustrated-message@0.11.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/illustrated-message + ## [0.11.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/illustrated-message@0.11.0...@iliad-ui/illustrated-message@0.11.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/illustrated-message diff --git a/packages/illustrated-message/package.json b/packages/illustrated-message/package.json index 97958b9af87..bac0f94a29d 100644 --- a/packages/illustrated-message/package.json +++ b/packages/illustrated-message/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/illustrated-message", - "version": "0.11.1", + "version": "0.11.2", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/styles": "^0.17.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/styles": "^0.17.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/link/CHANGELOG.md b/packages/link/CHANGELOG.md index b1cb4e09783..b599481e886 100644 --- a/packages/link/CHANGELOG.md +++ b/packages/link/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/link@0.14.1...@iliad-ui/link@0.14.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/link + ## [0.14.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/link@0.14.0...@iliad-ui/link@0.14.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/link diff --git a/packages/link/package.json b/packages/link/package.json index 1b3a00ee7a0..3268ed2c302 100644 --- a/packages/link/package.json +++ b/packages/link/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/link", - "version": "0.14.1", + "version": "0.14.2", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/menu/CHANGELOG.md b/packages/menu/CHANGELOG.md index 1a7fc91bd5b..be81c53363e 100644 --- a/packages/menu/CHANGELOG.md +++ b/packages/menu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.17.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/menu@0.17.1...@iliad-ui/menu@0.17.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/menu + ## [0.17.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/menu@0.17.0...@iliad-ui/menu@0.17.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/menu diff --git a/packages/menu/package.json b/packages/menu/package.json index 8b2c51e38c8..6e2197a64d4 100644 --- a/packages/menu/package.json +++ b/packages/menu/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/menu", - "version": "0.17.1", + "version": "0.17.2", "publishConfig": { "access": "public" }, @@ -50,11 +50,11 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.14.1", - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/icons-ui": "^0.13.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/action-button": "^0.14.2", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/icons-ui": "^0.13.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/meter/CHANGELOG.md b/packages/meter/CHANGELOG.md index 96ea4e9c879..c3d6738049e 100644 --- a/packages/meter/CHANGELOG.md +++ b/packages/meter/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/meter@0.9.1...@iliad-ui/meter@0.9.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/meter + ## [0.9.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/meter@0.9.0...@iliad-ui/meter@0.9.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/meter diff --git a/packages/meter/package.json b/packages/meter/package.json index bccb5fad67a..a6b141f477b 100644 --- a/packages/meter/package.json +++ b/packages/meter/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/meter", - "version": "0.9.1", + "version": "0.9.2", "publishConfig": { "access": "public" }, @@ -44,9 +44,9 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/field-label": "^0.10.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/field-label": "^0.10.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/modal/CHANGELOG.md b/packages/modal/CHANGELOG.md index 42a2659550c..21e1b9569c9 100644 --- a/packages/modal/CHANGELOG.md +++ b/packages/modal/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/modal@0.8.1...@iliad-ui/modal@0.8.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/modal + ## [0.8.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/modal@0.8.0...@iliad-ui/modal@0.8.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/modal diff --git a/packages/modal/package.json b/packages/modal/package.json index 600c5ce3208..ad2aadae160 100644 --- a/packages/modal/package.json +++ b/packages/modal/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/modal", - "version": "0.8.1", + "version": "0.8.2", "publishConfig": { "access": "public" }, @@ -42,7 +42,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/number-field/CHANGELOG.md b/packages/number-field/CHANGELOG.md index 657d17f53a7..1b62bd0c825 100644 --- a/packages/number-field/CHANGELOG.md +++ b/packages/number-field/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/number-field@0.9.1...@iliad-ui/number-field@0.9.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/number-field + ## [0.9.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/number-field@0.9.0...@iliad-ui/number-field@0.9.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/number-field diff --git a/packages/number-field/package.json b/packages/number-field/package.json index d61fba534a3..361df53dd5c 100644 --- a/packages/number-field/package.json +++ b/packages/number-field/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/number-field", - "version": "0.9.1", + "version": "0.9.2", "publishConfig": { "access": "public" }, @@ -44,11 +44,11 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.14.1", - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/icons-ui": "^0.13.1", - "@iliad-ui/textfield": "^0.15.1", + "@iliad-ui/action-button": "^0.14.2", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/icons-ui": "^0.13.2", + "@iliad-ui/textfield": "^0.15.2", "@internationalized/number": "^3.0.2", "tslib": "^2.0.0" }, diff --git a/packages/overlay/CHANGELOG.md b/packages/overlay/CHANGELOG.md index ac8395c6417..c5f115a56f0 100644 --- a/packages/overlay/CHANGELOG.md +++ b/packages/overlay/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/overlay@0.18.1...@iliad-ui/overlay@0.18.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/overlay + ## [0.18.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/overlay@0.18.0...@iliad-ui/overlay@0.18.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/overlay diff --git a/packages/overlay/package.json b/packages/overlay/package.json index ceb9bbe35eb..63523057755 100644 --- a/packages/overlay/package.json +++ b/packages/overlay/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/overlay", - "version": "0.18.1", + "version": "0.18.2", "publishConfig": { "access": "public" }, @@ -48,10 +48,10 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.14.1", - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/shared": "^0.19.1", - "@iliad-ui/theme": "^0.15.1", + "@iliad-ui/action-button": "^0.14.2", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/shared": "^0.19.2", + "@iliad-ui/theme": "^0.15.2", "@popperjs/core": "^2.2.2", "popper-max-size-modifier": "^0.2.0", "tslib": "^2.0.0" diff --git a/packages/picker/CHANGELOG.md b/packages/picker/CHANGELOG.md index 19c65fbf590..8e567f42a14 100644 --- a/packages/picker/CHANGELOG.md +++ b/packages/picker/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.13.31...@iliad-ui/picker@0.14.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/picker + ## [0.14.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.14.0...@iliad-ui/picker@0.14.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/picker diff --git a/packages/picker/package.json b/packages/picker/package.json index 8eb3c9df228..17e29f397ee 100644 --- a/packages/picker/package.json +++ b/packages/picker/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/picker", - "version": "0.14.1", + "version": "0.14.2", "publishConfig": { "access": "public" }, @@ -48,15 +48,15 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/button": "^0.23.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/icons-ui": "^0.13.1", - "@iliad-ui/icons-workflow": "^0.13.1", - "@iliad-ui/menu": "^0.17.1", - "@iliad-ui/overlay": "^0.18.1", - "@iliad-ui/popover": "^0.16.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/button": "^0.23.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/icons-ui": "^0.13.2", + "@iliad-ui/icons-workflow": "^0.13.2", + "@iliad-ui/menu": "^0.17.2", + "@iliad-ui/overlay": "^0.18.2", + "@iliad-ui/popover": "^0.16.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/popover/CHANGELOG.md b/packages/popover/CHANGELOG.md index f0a3bf007ad..b9fa3c67970 100644 --- a/packages/popover/CHANGELOG.md +++ b/packages/popover/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.15.10...@iliad-ui/popover@0.16.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/popover + ## [0.16.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.16.0...@iliad-ui/popover@0.16.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/popover diff --git a/packages/popover/package.json b/packages/popover/package.json index 9cb91396566..029bc0396fe 100644 --- a/packages/popover/package.json +++ b/packages/popover/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/popover", - "version": "0.16.1", + "version": "0.16.2", "publishConfig": { "access": "public" }, @@ -46,9 +46,9 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/icons-editor": "^0.9.1", - "@iliad-ui/overlay": "^0.18.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/icons-editor": "^0.9.2", + "@iliad-ui/overlay": "^0.18.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/progress-bar/CHANGELOG.md b/packages/progress-bar/CHANGELOG.md index ea16a46e086..952ebdcb7cb 100644 --- a/packages/progress-bar/CHANGELOG.md +++ b/packages/progress-bar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/progress-bar@0.8.1...@iliad-ui/progress-bar@0.8.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/progress-bar + ## [0.8.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/progress-bar@0.8.0...@iliad-ui/progress-bar@0.8.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/progress-bar diff --git a/packages/progress-bar/package.json b/packages/progress-bar/package.json index 782317d9d02..b9e93ac4174 100644 --- a/packages/progress-bar/package.json +++ b/packages/progress-bar/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/progress-bar", - "version": "0.8.1", + "version": "0.8.2", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/field-label": "^0.10.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/field-label": "^0.10.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/progress-circle/CHANGELOG.md b/packages/progress-circle/CHANGELOG.md index 4910942afec..35528247ea2 100644 --- a/packages/progress-circle/CHANGELOG.md +++ b/packages/progress-circle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/progress-circle@0.6.12...@iliad-ui/progress-circle@0.7.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/progress-circle + ## [0.7.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/progress-circle@0.7.0...@iliad-ui/progress-circle@0.7.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/progress-circle diff --git a/packages/progress-circle/package.json b/packages/progress-circle/package.json index c25607de1f8..9d79e9b3da6 100644 --- a/packages/progress-circle/package.json +++ b/packages/progress-circle/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/progress-circle", - "version": "0.7.1", + "version": "0.7.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/quick-actions/CHANGELOG.md b/packages/quick-actions/CHANGELOG.md index ca5dfc7b2d6..9523aa6a190 100644 --- a/packages/quick-actions/CHANGELOG.md +++ b/packages/quick-actions/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/quick-actions@0.8.12...@iliad-ui/quick-actions@0.9.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/quick-actions + ## [0.9.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/quick-actions@0.9.0...@iliad-ui/quick-actions@0.9.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/quick-actions diff --git a/packages/quick-actions/package.json b/packages/quick-actions/package.json index 7d8ecee9db9..b018ce72672 100644 --- a/packages/quick-actions/package.json +++ b/packages/quick-actions/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/quick-actions", - "version": "0.9.1", + "version": "0.9.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/radio/CHANGELOG.md b/packages/radio/CHANGELOG.md index 9db82a1843c..efc2a0581d1 100644 --- a/packages/radio/CHANGELOG.md +++ b/packages/radio/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/radio@0.16.1...@iliad-ui/radio@0.16.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/radio + ## [0.16.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/radio@0.16.0...@iliad-ui/radio@0.16.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/radio diff --git a/packages/radio/package.json b/packages/radio/package.json index 24cf6e04c7a..abdd3e20a16 100644 --- a/packages/radio/package.json +++ b/packages/radio/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/radio", - "version": "0.16.1", + "version": "0.16.2", "publishConfig": { "access": "public" }, @@ -46,9 +46,9 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/field-group": "^0.8.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/field-group": "^0.8.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 9083845872f..6fea663258f 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.19.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.19.1...@iliad-ui/react@0.19.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/react + ## [0.19.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.19.0...@iliad-ui/react@0.19.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/react diff --git a/packages/react/package.json b/packages/react/package.json index 40757832ccf..711e192a943 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/react", - "version": "0.19.1", + "version": "0.19.2", "publishConfig": { "access": "public" }, @@ -42,8 +42,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/bundle": "^0.27.1", - "@iliad-ui/icons": "^0.20.1", + "@iliad-ui/bundle": "^0.27.2", + "@iliad-ui/icons": "^0.20.2", "@lit-labs/react": "^1.0.1", "@types/lodash": "^4.14.175", "@types/react": "^17.0.30", diff --git a/packages/search/CHANGELOG.md b/packages/search/CHANGELOG.md index 3e9b0f483e6..49e1275f7dd 100644 --- a/packages/search/CHANGELOG.md +++ b/packages/search/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/search@0.13.1...@iliad-ui/search@0.13.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/search + ## [0.13.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/search@0.13.0...@iliad-ui/search@0.13.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/search diff --git a/packages/search/package.json b/packages/search/package.json index f3d1139e853..2f11e442992 100644 --- a/packages/search/package.json +++ b/packages/search/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/search", - "version": "0.13.1", + "version": "0.13.2", "publishConfig": { "access": "public" }, @@ -44,11 +44,11 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/button": "^0.23.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/icons-workflow": "^0.13.1", - "@iliad-ui/textfield": "^0.15.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/button": "^0.23.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/icons-workflow": "^0.13.2", + "@iliad-ui/textfield": "^0.15.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/shared/CHANGELOG.md b/packages/shared/CHANGELOG.md index 84f2a81a4c7..12bfabe8b55 100644 --- a/packages/shared/CHANGELOG.md +++ b/packages/shared/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.19.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/shared@0.18.12...@iliad-ui/shared@0.19.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/shared + ## [0.19.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/shared@0.19.0...@iliad-ui/shared@0.19.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/shared diff --git a/packages/shared/package.json b/packages/shared/package.json index 0486e2e2a88..85aa59e638c 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/shared", - "version": "0.19.1", + "version": "0.19.2", "publishConfig": { "access": "public" }, @@ -42,7 +42,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "focus-visible": "^5.1.0", "tslib": "^2.0.0" }, diff --git a/packages/sidenav/CHANGELOG.md b/packages/sidenav/CHANGELOG.md index 58fe834622f..171e6688a70 100644 --- a/packages/sidenav/CHANGELOG.md +++ b/packages/sidenav/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.15.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/sidenav@0.15.1...@iliad-ui/sidenav@0.15.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/sidenav + ## [0.15.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/sidenav@0.15.0...@iliad-ui/sidenav@0.15.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/sidenav diff --git a/packages/sidenav/package.json b/packages/sidenav/package.json index b39ae99af29..6dd2aeba8e1 100644 --- a/packages/sidenav/package.json +++ b/packages/sidenav/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/sidenav", - "version": "0.15.1", + "version": "0.15.2", "publishConfig": { "access": "public" }, @@ -48,8 +48,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/slider/CHANGELOG.md b/packages/slider/CHANGELOG.md index e1ec54331ea..82abbc9de06 100644 --- a/packages/slider/CHANGELOG.md +++ b/packages/slider/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/slider@0.18.1...@iliad-ui/slider@0.18.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/slider + ## [0.18.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/slider@0.18.0...@iliad-ui/slider@0.18.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/slider diff --git a/packages/slider/package.json b/packages/slider/package.json index 415df541090..e4dae388817 100644 --- a/packages/slider/package.json +++ b/packages/slider/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/slider", - "version": "0.18.1", + "version": "0.18.2", "publishConfig": { "access": "public" }, @@ -48,11 +48,11 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/field-label": "^0.10.1", - "@iliad-ui/number-field": "^0.9.1", - "@iliad-ui/shared": "^0.19.1", - "@iliad-ui/theme": "^0.15.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/field-label": "^0.10.2", + "@iliad-ui/number-field": "^0.9.2", + "@iliad-ui/shared": "^0.19.2", + "@iliad-ui/theme": "^0.15.2", "@internationalized/number": "^3.0.0", "tslib": "^2.0.0" }, diff --git a/packages/split-button/CHANGELOG.md b/packages/split-button/CHANGELOG.md index 8b23872999a..991a4af5a4a 100644 --- a/packages/split-button/CHANGELOG.md +++ b/packages/split-button/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.10.1...@iliad-ui/split-button@0.10.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/split-button + ## [0.10.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.10.0...@iliad-ui/split-button@0.10.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/split-button diff --git a/packages/split-button/package.json b/packages/split-button/package.json index d1d095f1acb..e049a8453ab 100644 --- a/packages/split-button/package.json +++ b/packages/split-button/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/split-button", - "version": "0.10.1", + "version": "0.10.2", "publishConfig": { "access": "public" }, @@ -46,13 +46,13 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/button": "^0.23.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/icons-ui": "^0.13.1", - "@iliad-ui/icons-workflow": "^0.13.1", - "@iliad-ui/overlay": "^0.18.1", - "@iliad-ui/picker": "^0.14.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/button": "^0.23.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/icons-ui": "^0.13.2", + "@iliad-ui/icons-workflow": "^0.13.2", + "@iliad-ui/overlay": "^0.18.2", + "@iliad-ui/picker": "^0.14.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/split-view/CHANGELOG.md b/packages/split-view/CHANGELOG.md index a8fe81c3af6..793849792e3 100644 --- a/packages/split-view/CHANGELOG.md +++ b/packages/split-view/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-view@0.9.1...@iliad-ui/split-view@0.9.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/split-view + ## [0.9.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-view@0.9.0...@iliad-ui/split-view@0.9.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/split-view diff --git a/packages/split-view/package.json b/packages/split-view/package.json index 36eca3cd125..60bb72da424 100644 --- a/packages/split-view/package.json +++ b/packages/split-view/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/split-view", - "version": "0.9.1", + "version": "0.9.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/status-light/CHANGELOG.md b/packages/status-light/CHANGELOG.md index f0ae93dc5ca..ab904ceff2c 100644 --- a/packages/status-light/CHANGELOG.md +++ b/packages/status-light/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/status-light@0.13.1...@iliad-ui/status-light@0.13.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/status-light + ## [0.13.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/status-light@0.13.0...@iliad-ui/status-light@0.13.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/status-light diff --git a/packages/status-light/package.json b/packages/status-light/package.json index 224bbb176a6..655296fbbe0 100644 --- a/packages/status-light/package.json +++ b/packages/status-light/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/status-light", - "version": "0.13.1", + "version": "0.13.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/styles/CHANGELOG.md b/packages/styles/CHANGELOG.md index 956f739ec6a..1805fdda2a7 100644 --- a/packages/styles/CHANGELOG.md +++ b/packages/styles/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.17.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/styles@0.17.1...@iliad-ui/styles@0.17.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/styles + ## [0.17.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/styles@0.17.0...@iliad-ui/styles@0.17.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/styles diff --git a/packages/styles/package.json b/packages/styles/package.json index 25380938229..219691463b3 100644 --- a/packages/styles/package.json +++ b/packages/styles/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/styles", - "version": "0.17.1", + "version": "0.17.2", "publishConfig": { "access": "public" }, @@ -72,7 +72,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1" + "@iliad-ui/base": "^0.12.2" }, "devDependencies": { "@spectrum-css/commons": "^3.0.2", diff --git a/packages/switch/CHANGELOG.md b/packages/switch/CHANGELOG.md index 9d14966b7d4..0d82e3fa07c 100644 --- a/packages/switch/CHANGELOG.md +++ b/packages/switch/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/switch@0.12.1...@iliad-ui/switch@0.12.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/switch + ## [0.12.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/switch@0.12.0...@iliad-ui/switch@0.12.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/switch diff --git a/packages/switch/package.json b/packages/switch/package.json index 43822d9bf75..6471d7aefdc 100644 --- a/packages/switch/package.json +++ b/packages/switch/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/switch", - "version": "0.12.1", + "version": "0.12.2", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/checkbox": "^0.15.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/checkbox": "^0.15.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/tabs/CHANGELOG.md b/packages/tabs/CHANGELOG.md index 7b02f727835..e87b97d8d7f 100644 --- a/packages/tabs/CHANGELOG.md +++ b/packages/tabs/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tabs@0.13.1...@iliad-ui/tabs@0.13.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/tabs + ## [0.13.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tabs@0.13.0...@iliad-ui/tabs@0.13.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/tabs diff --git a/packages/tabs/package.json b/packages/tabs/package.json index ea93bcd088c..2884f6e8dad 100644 --- a/packages/tabs/package.json +++ b/packages/tabs/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/tabs", - "version": "0.13.1", + "version": "0.13.2", "publishConfig": { "access": "public" }, @@ -48,8 +48,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/tags/CHANGELOG.md b/packages/tags/CHANGELOG.md index a25c13a6f17..5c2b8860ced 100644 --- a/packages/tags/CHANGELOG.md +++ b/packages/tags/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tags@0.13.1...@iliad-ui/tags@0.13.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/tags + ## [0.13.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tags@0.13.0...@iliad-ui/tags@0.13.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/tags diff --git a/packages/tags/package.json b/packages/tags/package.json index 1401fb37307..1f66dcad220 100644 --- a/packages/tags/package.json +++ b/packages/tags/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/tags", - "version": "0.13.1", + "version": "0.13.2", "publishConfig": { "access": "public" }, @@ -46,9 +46,9 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/button": "^0.23.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/button": "^0.23.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/textfield/CHANGELOG.md b/packages/textfield/CHANGELOG.md index 5b098874f6d..8d765b57ea9 100644 --- a/packages/textfield/CHANGELOG.md +++ b/packages/textfield/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.15.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/textfield@0.15.1...@iliad-ui/textfield@0.15.2) (2022-08-05) + +### Features + +- textfield 增加 type ([9781565](https://github.com/gaoding-inc/iliad-ui/commit/9781565d170a4d96bb8fd655fea2c1baac6202bb)) + ## [0.15.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/textfield@0.15.0...@iliad-ui/textfield@0.15.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/textfield diff --git a/packages/textfield/package.json b/packages/textfield/package.json index 1865f75ed15..3c7f1e17e37 100644 --- a/packages/textfield/package.json +++ b/packages/textfield/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/textfield", - "version": "0.15.1", + "version": "0.15.2", "publishConfig": { "access": "public" }, @@ -44,11 +44,11 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/icons-ui": "^0.13.1", - "@iliad-ui/icons-workflow": "^0.13.1", - "@iliad-ui/shared": "^0.19.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/icons-ui": "^0.13.2", + "@iliad-ui/icons-workflow": "^0.13.2", + "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/theme/CHANGELOG.md b/packages/theme/CHANGELOG.md index 64b5bc93378..89b2fba80a2 100644 --- a/packages/theme/CHANGELOG.md +++ b/packages/theme/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.15.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/theme@0.15.1...@iliad-ui/theme@0.15.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/theme + ## [0.15.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/theme@0.15.0...@iliad-ui/theme@0.15.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/theme diff --git a/packages/theme/package.json b/packages/theme/package.json index fc9708e8ff7..beab49a9ef7 100644 --- a/packages/theme/package.json +++ b/packages/theme/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/theme", - "version": "0.15.1", + "version": "0.15.2", "publishConfig": { "access": "public" }, @@ -56,8 +56,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/styles": "^0.17.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/styles": "^0.17.2", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/thumbnail/CHANGELOG.md b/packages/thumbnail/CHANGELOG.md index 5a9d0c2b52d..b67bbe21f9c 100644 --- a/packages/thumbnail/CHANGELOG.md +++ b/packages/thumbnail/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/thumbnail@0.7.1...@iliad-ui/thumbnail@0.7.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/thumbnail + ## [0.7.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/thumbnail@0.7.0...@iliad-ui/thumbnail@0.7.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/thumbnail diff --git a/packages/thumbnail/package.json b/packages/thumbnail/package.json index a76bf39ddb1..7ff1e5b5c90 100644 --- a/packages/thumbnail/package.json +++ b/packages/thumbnail/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/thumbnail", - "version": "0.7.1", + "version": "0.7.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/toast/CHANGELOG.md b/packages/toast/CHANGELOG.md index 22199590f4b..b595cfca741 100644 --- a/packages/toast/CHANGELOG.md +++ b/packages/toast/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/toast@0.17.1...@iliad-ui/toast@0.18.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/toast + ## [0.18.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/toast@0.18.0...@iliad-ui/toast@0.18.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/toast diff --git a/packages/toast/package.json b/packages/toast/package.json index eb70a4a2d68..97fe27e2b22 100644 --- a/packages/toast/package.json +++ b/packages/toast/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/toast", - "version": "0.18.1", + "version": "0.18.2", "publishConfig": { "access": "public" }, @@ -44,10 +44,10 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/button": "^0.23.1", - "@iliad-ui/icon": "^0.17.1", - "@iliad-ui/icons-workflow": "^0.13.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/button": "^0.23.2", + "@iliad-ui/icon": "^0.17.2", + "@iliad-ui/icons-workflow": "^0.13.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/tooltip/CHANGELOG.md b/packages/tooltip/CHANGELOG.md index 2c9717d70ff..dbc5bf44bfa 100644 --- a/packages/tooltip/CHANGELOG.md +++ b/packages/tooltip/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tooltip@0.13.1...@iliad-ui/tooltip@0.13.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/tooltip + ## [0.13.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tooltip@0.13.0...@iliad-ui/tooltip@0.13.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/tooltip diff --git a/packages/tooltip/package.json b/packages/tooltip/package.json index d8a164e7703..36c227ab95d 100644 --- a/packages/tooltip/package.json +++ b/packages/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/tooltip", - "version": "0.13.1", + "version": "0.13.2", "publishConfig": { "access": "public" }, @@ -44,8 +44,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/overlay": "^0.18.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/overlay": "^0.18.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/top-nav/CHANGELOG.md b/packages/top-nav/CHANGELOG.md index 516d8d597f4..e5043419974 100644 --- a/packages/top-nav/CHANGELOG.md +++ b/packages/top-nav/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/top-nav@0.8.1...@iliad-ui/top-nav@0.8.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/top-nav + ## [0.8.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/top-nav@0.8.0...@iliad-ui/top-nav@0.8.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/top-nav diff --git a/packages/top-nav/package.json b/packages/top-nav/package.json index 1ad3014e8bf..e37c9ac6576 100644 --- a/packages/top-nav/package.json +++ b/packages/top-nav/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/top-nav", - "version": "0.8.1", + "version": "0.8.2", "publishConfig": { "access": "public" }, @@ -46,9 +46,9 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/shared": "^0.19.1", - "@iliad-ui/tabs": "^0.13.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/shared": "^0.19.2", + "@iliad-ui/tabs": "^0.13.2", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/tray/CHANGELOG.md b/packages/tray/CHANGELOG.md index 372908c22a7..a3469def467 100644 --- a/packages/tray/CHANGELOG.md +++ b/packages/tray/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tray@0.6.12...@iliad-ui/tray@0.7.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/tray + ## [0.7.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tray@0.7.0...@iliad-ui/tray@0.7.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/tray diff --git a/packages/tray/package.json b/packages/tray/package.json index b7cd3ea75a2..60e9f0a4db3 100644 --- a/packages/tray/package.json +++ b/packages/tray/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/tray", - "version": "0.7.1", + "version": "0.7.2", "publishConfig": { "access": "public" }, @@ -44,9 +44,9 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/modal": "^0.8.1", - "@iliad-ui/underlay": "^0.11.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/modal": "^0.8.2", + "@iliad-ui/underlay": "^0.11.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/tree/CHANGELOG.md b/packages/tree/CHANGELOG.md index 00449099fb3..36e28e0d531 100644 --- a/packages/tree/CHANGELOG.md +++ b/packages/tree/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tree@0.7.1...@iliad-ui/tree@0.7.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/tree + ## [0.7.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tree@0.7.0...@iliad-ui/tree@0.7.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/tree diff --git a/packages/tree/package.json b/packages/tree/package.json index a8e34ad7d62..c86e5d37a0c 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/tree", - "version": "0.7.1", + "version": "0.7.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/underlay/CHANGELOG.md b/packages/underlay/CHANGELOG.md index 76a06ae26da..c15586dff76 100644 --- a/packages/underlay/CHANGELOG.md +++ b/packages/underlay/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.11.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/underlay@0.11.1...@iliad-ui/underlay@0.11.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/underlay + ## [0.11.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/underlay@0.11.0...@iliad-ui/underlay@0.11.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/underlay diff --git a/packages/underlay/package.json b/packages/underlay/package.json index 1b2e46f6c8f..016659e71b4 100644 --- a/packages/underlay/package.json +++ b/packages/underlay/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/underlay", - "version": "0.11.1", + "version": "0.11.2", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", + "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/projects/documentation/CHANGELOG.md b/projects/documentation/CHANGELOG.md index 8a3f9a64db9..f0e874da4c0 100644 --- a/projects/documentation/CHANGELOG.md +++ b/projects/documentation/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.33](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.32...documentation@0.1.33) (2022-08-05) + +**Note:** Version bump only for package documentation + ## [0.1.32](https://github.com/gaoding-inc/Iliad-ui/compare/documentation@0.1.31...documentation@0.1.32) (2022-07-19) **Note:** Version bump only for package documentation diff --git a/projects/documentation/package.json b/projects/documentation/package.json index d68a03b7b62..5d63ccd71e7 100644 --- a/projects/documentation/package.json +++ b/projects/documentation/package.json @@ -1,6 +1,6 @@ { "name": "documentation", - "version": "0.1.32", + "version": "0.1.33", "private": true, "description": "The documentation site for Spectrum Web Components", "license": "Apache-2.0", @@ -25,7 +25,7 @@ "watch:serve": "wds --root-dir=dist --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.1", + "@iliad-ui/bundle": "^0.27.2", "@spectrum-css/table": "^4.0.5" }, "devDependencies": { diff --git a/projects/example-project-rollup/CHANGELOG.md b/projects/example-project-rollup/CHANGELOG.md index 72ab6216d33..413e330349d 100644 --- a/projects/example-project-rollup/CHANGELOG.md +++ b/projects/example-project-rollup/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.2](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.4.30...example-project-rollup@0.5.2) (2022-08-05) + +**Note:** Version bump only for package example-project-rollup + ## [0.5.1](https://github.com/gaoding-inc/Iliad-ui/compare/example-project-rollup@0.5.0...example-project-rollup@0.5.1) (2022-07-19) **Note:** Version bump only for package example-project-rollup diff --git a/projects/example-project-rollup/package.json b/projects/example-project-rollup/package.json index 52c15e27cc6..0a76b2a059a 100644 --- a/projects/example-project-rollup/package.json +++ b/projects/example-project-rollup/package.json @@ -1,6 +1,6 @@ { "name": "example-project-rollup", - "version": "0.5.1", + "version": "0.5.2", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with rollup.", "license": "Apache-2.0", @@ -20,14 +20,14 @@ "tsc:watch": "tsc --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.1", - "@iliad-ui/button": "^0.23.1", - "@iliad-ui/field-label": "^0.10.1", - "@iliad-ui/icons": "^0.20.1", - "@iliad-ui/icons-editor": "^0.9.1", - "@iliad-ui/menu": "^0.17.1", - "@iliad-ui/picker": "^0.14.1", - "@iliad-ui/styles": "^0.17.1" + "@iliad-ui/bundle": "^0.27.2", + "@iliad-ui/button": "^0.23.2", + "@iliad-ui/field-label": "^0.10.2", + "@iliad-ui/icons": "^0.20.2", + "@iliad-ui/icons-editor": "^0.9.2", + "@iliad-ui/menu": "^0.17.2", + "@iliad-ui/picker": "^0.14.2", + "@iliad-ui/styles": "^0.17.2" }, "devDependencies": { "@open-wc/building-rollup": "^1.6.3", diff --git a/projects/example-project-webpack/CHANGELOG.md b/projects/example-project-webpack/CHANGELOG.md index 75badbbe7e9..04aa0f303d0 100644 --- a/projects/example-project-webpack/CHANGELOG.md +++ b/projects/example-project-webpack/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.6.2](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.1...example-project-webpack@1.6.2) (2022-08-05) + +**Note:** Version bump only for package example-project-webpack + ## [1.6.1](https://github.com/gaoding-inc/Iliad-ui/compare/example-project-webpack@1.6.0...example-project-webpack@1.6.1) (2022-07-19) **Note:** Version bump only for package example-project-webpack diff --git a/projects/example-project-webpack/package.json b/projects/example-project-webpack/package.json index ff3e5ba8270..2dfc9019060 100644 --- a/projects/example-project-webpack/package.json +++ b/projects/example-project-webpack/package.json @@ -1,6 +1,6 @@ { "name": "example-project-webpack", - "version": "1.6.1", + "version": "1.6.2", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with webpack.", "license": "Apache-2.0", @@ -12,12 +12,12 @@ "serve": "webpack-dev-server" }, "dependencies": { - "@iliad-ui/button": "^0.23.1", - "@iliad-ui/field-label": "^0.10.1", - "@iliad-ui/menu": "^0.17.1", - "@iliad-ui/picker": "^0.14.1", - "@iliad-ui/react": "^0.19.1", - "@iliad-ui/styles": "^0.17.1", + "@iliad-ui/button": "^0.23.2", + "@iliad-ui/field-label": "^0.10.2", + "@iliad-ui/menu": "^0.17.2", + "@iliad-ui/picker": "^0.14.2", + "@iliad-ui/react": "^0.19.2", + "@iliad-ui/styles": "^0.17.2", "lit": "^2.0.0" }, "devDependencies": { diff --git a/projects/story-decorator/CHANGELOG.md b/projects/story-decorator/CHANGELOG.md index 058d42338ee..c16cc9fd90c 100644 --- a/projects/story-decorator/CHANGELOG.md +++ b/projects/story-decorator/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.10.1...@iliad-ui/story-decorator@0.10.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/story-decorator + ## [0.10.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.10.0...@iliad-ui/story-decorator@0.10.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/story-decorator diff --git a/projects/story-decorator/package.json b/projects/story-decorator/package.json index fdc2fecd286..0ddd9106635 100644 --- a/projects/story-decorator/package.json +++ b/projects/story-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/story-decorator", - "version": "0.10.1", + "version": "0.10.2", "publishConfig": { "access": "public" }, @@ -45,13 +45,13 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/field-label": "^0.10.1", - "@iliad-ui/menu": "^0.17.1", - "@iliad-ui/overlay": "^0.18.1", - "@iliad-ui/picker": "^0.14.1", - "@iliad-ui/switch": "^0.12.1", - "@iliad-ui/theme": "^0.15.1", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/field-label": "^0.10.2", + "@iliad-ui/menu": "^0.17.2", + "@iliad-ui/overlay": "^0.18.2", + "@iliad-ui/picker": "^0.14.2", + "@iliad-ui/switch": "^0.12.2", + "@iliad-ui/theme": "^0.15.2", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/projects/templates/CHANGELOG.md b/projects/templates/CHANGELOG.md index b6be2923b95..e68dadba737 100644 --- a/projects/templates/CHANGELOG.md +++ b/projects/templates/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.21](https://github.com/zzuzsj/iliad-ui/compare/swc-templates@0.5.20...swc-templates@0.5.21) (2022-08-05) + +**Note:** Version bump only for package swc-templates + ## [0.5.20](https://github.com/gaoding-inc/Iliad-ui/compare/swc-templates@0.5.3...swc-templates@0.5.20) (2022-07-19) ### Bug Fixes diff --git a/projects/templates/package.json b/projects/templates/package.json index 9e134632cde..d5d651bb7ad 100644 --- a/projects/templates/package.json +++ b/projects/templates/package.json @@ -1,6 +1,6 @@ { "name": "swc-templates", - "version": "0.5.20", + "version": "0.5.21", "private": true, "description": "Templates for generating a Spectrum Web Component package.", "license": "Apache-2.0", diff --git a/projects/vrt-compare/CHANGELOG.md b/projects/vrt-compare/CHANGELOG.md index ac0b45a4df1..23793edbcb9 100644 --- a/projects/vrt-compare/CHANGELOG.md +++ b/projects/vrt-compare/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.7.1...@iliad-ui/vrt-compare@0.7.2) (2022-08-05) + +**Note:** Version bump only for package @iliad-ui/vrt-compare + ## [0.7.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.7.0...@iliad-ui/vrt-compare@0.7.1) (2022-07-19) **Note:** Version bump only for package @iliad-ui/vrt-compare diff --git a/projects/vrt-compare/package.json b/projects/vrt-compare/package.json index 279a593c89d..76f19d83794 100644 --- a/projects/vrt-compare/package.json +++ b/projects/vrt-compare/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/vrt-compare", - "version": "0.7.1", + "version": "0.7.2", "publishConfig": { "access": "public" }, @@ -44,14 +44,14 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-bar": "^0.7.1", - "@iliad-ui/action-button": "^0.14.1", - "@iliad-ui/action-group": "^0.12.1", - "@iliad-ui/base": "^0.12.1", - "@iliad-ui/icons-workflow": "^0.13.1", - "@iliad-ui/shared": "^0.19.1", - "@iliad-ui/split-view": "^0.9.1", - "@iliad-ui/styles": "^0.17.1", + "@iliad-ui/action-bar": "^0.7.2", + "@iliad-ui/action-button": "^0.14.2", + "@iliad-ui/action-group": "^0.12.2", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/icons-workflow": "^0.13.2", + "@iliad-ui/shared": "^0.19.2", + "@iliad-ui/split-view": "^0.9.2", + "@iliad-ui/styles": "^0.17.2", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", From 80d4883e2e901d7210819afdb12a0783fab2c940 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Tue, 6 Sep 2022 16:34:03 +0800 Subject: [PATCH 05/28] =?UTF-8?q?feat:=20icons=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- .../icons/sp-icon-editor-earth.ts | 23 + .../sp-icon-editor-format-align-bottom.ts | 26 + .../sp-icon-editor-format-align-medium.ts | 26 + .../icons/sp-icon-editor-format-align-top.ts | 26 + packages/icons-editor/src/data.json | 918 +++++++++--------- .../icons-editor/src/elements/IconEarth.ts | 27 + .../src/elements/IconFormatAlignBottom.ts | 27 + .../src/elements/IconFormatAlignMedium.ts | 27 + .../src/elements/IconFormatAlignTop.ts | 27 + packages/icons-editor/src/icons.ts | 4 + .../icons-editor/src/icons/ArrowTriangle.ts | 9 +- packages/icons-editor/src/icons/Close.ts | 2 +- packages/icons-editor/src/icons/CloseFull.ts | 17 +- .../icons-editor/src/icons/Colorpicker.ts | 2 +- packages/icons-editor/src/icons/Crop.ts | 10 +- .../icons-editor/src/icons/DataBarchart.ts | 2 +- packages/icons-editor/src/icons/Display.ts | 9 +- packages/icons-editor/src/icons/Done.ts | 2 +- packages/icons-editor/src/icons/DragHandle.ts | 17 +- packages/icons-editor/src/icons/Earth.ts | 31 + .../icons-editor/src/icons/Easeoutback.ts | 2 +- .../icons-editor/src/icons/Easeoutelastic.ts | 2 +- .../icons-editor/src/icons/Easeoutquad.ts | 2 +- packages/icons-editor/src/icons/Eye.ts | 58 ++ packages/icons-editor/src/icons/EyeOff.ts | 2 +- packages/icons-editor/src/icons/Focus.ts | 2 +- .../src/icons/FormatAlignBottom.ts | 31 + .../src/icons/FormatAlignMedium.ts | 31 + .../icons-editor/src/icons/FormatAlignTop.ts | 31 + .../src/icons/FormatIndentDecrease.ts | 2 +- .../src/icons/FormatIndentIncrease.ts | 17 +- packages/icons-editor/src/icons/Global.ts | 6 + packages/icons-editor/src/icons/HeightFill.ts | 2 +- packages/icons-editor/src/icons/HeightHug.ts | 2 +- packages/icons-editor/src/icons/Home.ts | 2 +- packages/icons-editor/src/icons/Import.ts | 2 +- packages/icons-editor/src/icons/LabelC.ts | 2 +- packages/icons-editor/src/icons/LabelD.ts | 2 +- packages/icons-editor/src/icons/LabelG.ts | 2 +- packages/icons-editor/src/icons/LabelV.ts | 2 +- packages/icons-editor/src/icons/LabelX.ts | 2 +- packages/icons-editor/src/icons/LabelY.ts | 2 +- packages/icons-editor/src/icons/LabelZ.ts | 2 +- packages/icons-editor/src/icons/Layers.ts | 2 +- packages/icons-editor/src/icons/Linear.ts | 2 +- packages/icons-editor/src/icons/Link.ts | 2 +- packages/icons-editor/src/icons/Loading.ts | 19 +- .../icons-editor/src/icons/LoadingWhite.ts | 19 +- packages/icons-editor/src/icons/Materiel.ts | 17 +- packages/icons-editor/src/icons/Menu.ts | 73 +- packages/icons-editor/src/icons/MoreHoriz.ts | 17 +- packages/icons-editor/src/icons/OpenFull.ts | 2 +- .../src/icons/RadioButtonUnchecked.ts | 21 +- packages/icons-editor/src/icons/Remove.ts | 17 +- packages/icons-editor/src/icons/RotateLeft.ts | 2 +- packages/icons-editor/src/icons/Section.ts | 17 +- packages/icons-editor/src/icons/Star.ts | 2 +- packages/icons-editor/src/icons/StopCircle.ts | 2 +- packages/icons-editor/src/icons/Theme.ts | 4 +- packages/icons-editor/src/icons/Trigger.ts | 9 +- packages/icons-editor/src/icons/Unit.ts | 4 +- packages/icons-editor/src/icons/Unlocked.ts | 58 ++ packages/icons-editor/src/icons/WidthFill.ts | 2 +- packages/icons-editor/src/icons/WidthHug.ts | 2 +- .../icons-editor/src/svg/ArrowTriangle.svg | 7 + packages/icons-editor/src/svg/CloseFull.svg | 9 +- packages/icons-editor/src/svg/Colorpicker.svg | 2 +- packages/icons-editor/src/svg/Crop.svg | 6 +- .../icons-editor/src/svg/DataBarchart.svg | 2 +- packages/icons-editor/src/svg/Display.svg | 7 + packages/icons-editor/src/svg/Done.svg | 2 +- packages/icons-editor/src/svg/DragHandle.svg | 7 + packages/icons-editor/src/svg/Earth.svg | 3 + packages/icons-editor/src/svg/Easeoutback.svg | 2 +- .../icons-editor/src/svg/Easeoutelastic.svg | 2 +- packages/icons-editor/src/svg/Easeoutquad.svg | 2 +- packages/icons-editor/src/svg/Eye.svg | 17 + packages/icons-editor/src/svg/EyeOff.svg | 2 +- packages/icons-editor/src/svg/Focus.svg | 2 +- .../src/svg/FormatAlignBottom.svg | 3 + .../src/svg/FormatAlignMedium.svg | 3 + .../icons-editor/src/svg/FormatAlignTop.svg | 3 + .../src/svg/FormatIndentDecrease.svg | 2 +- .../src/svg/FormatIndentIncrease.svg | 9 +- packages/icons-editor/src/svg/Global.svg | 1 + packages/icons-editor/src/svg/HeightFill.svg | 2 +- packages/icons-editor/src/svg/HeightHug.svg | 2 +- packages/icons-editor/src/svg/Home.svg | 2 +- packages/icons-editor/src/svg/Import.svg | 2 +- packages/icons-editor/src/svg/LabelC.svg | 2 +- packages/icons-editor/src/svg/LabelD.svg | 2 +- packages/icons-editor/src/svg/LabelG.svg | 2 +- packages/icons-editor/src/svg/LabelV.svg | 2 +- packages/icons-editor/src/svg/LabelX.svg | 2 +- packages/icons-editor/src/svg/LabelY.svg | 2 +- packages/icons-editor/src/svg/LabelZ.svg | 2 +- packages/icons-editor/src/svg/Layers.svg | 2 +- packages/icons-editor/src/svg/Linear.svg | 2 +- packages/icons-editor/src/svg/Link.svg | 2 +- packages/icons-editor/src/svg/Loading.svg | 5 + .../icons-editor/src/svg/LoadingWhite.svg | 5 + packages/icons-editor/src/svg/Materiel.svg | 7 + packages/icons-editor/src/svg/Menu.svg | 22 + packages/icons-editor/src/svg/MoreHoriz.svg | 7 + packages/icons-editor/src/svg/OpenFull.svg | 2 +- .../src/svg/RadioButtonUnchecked.svg | 7 + packages/icons-editor/src/svg/Remove.svg | 7 + packages/icons-editor/src/svg/RotateLeft.svg | 2 +- packages/icons-editor/src/svg/Section.svg | 7 + packages/icons-editor/src/svg/Star.svg | 2 +- packages/icons-editor/src/svg/StopCircle.svg | 2 +- packages/icons-editor/src/svg/Theme.svg | 4 +- packages/icons-editor/src/svg/Trigger.svg | 7 + packages/icons-editor/src/svg/Unit.svg | 4 +- packages/icons-editor/src/svg/Unlocked.svg | 17 + packages/icons-editor/src/svg/WidthFill.svg | 2 +- packages/icons-editor/src/svg/WidthHug.svg | 2 +- packages/icons-editor/src/svg/close.svg | 2 +- packages/icons/src/icons-editor.svg.ts | 2 +- packages/react/src/index.ts | 22 +- scripts/build-react.js | 51 +- 122 files changed, 1439 insertions(+), 605 deletions(-) create mode 100644 packages/icons-editor/icons/sp-icon-editor-earth.ts create mode 100644 packages/icons-editor/icons/sp-icon-editor-format-align-bottom.ts create mode 100644 packages/icons-editor/icons/sp-icon-editor-format-align-medium.ts create mode 100644 packages/icons-editor/icons/sp-icon-editor-format-align-top.ts create mode 100644 packages/icons-editor/src/elements/IconEarth.ts create mode 100644 packages/icons-editor/src/elements/IconFormatAlignBottom.ts create mode 100644 packages/icons-editor/src/elements/IconFormatAlignMedium.ts create mode 100644 packages/icons-editor/src/elements/IconFormatAlignTop.ts create mode 100644 packages/icons-editor/src/icons/Earth.ts create mode 100644 packages/icons-editor/src/icons/FormatAlignBottom.ts create mode 100644 packages/icons-editor/src/icons/FormatAlignMedium.ts create mode 100644 packages/icons-editor/src/icons/FormatAlignTop.ts create mode 100644 packages/icons-editor/src/svg/Earth.svg create mode 100644 packages/icons-editor/src/svg/FormatAlignBottom.svg create mode 100644 packages/icons-editor/src/svg/FormatAlignMedium.svg create mode 100644 packages/icons-editor/src/svg/FormatAlignTop.svg diff --git a/package.json b/package.json index 51086903793..2ecebeb9dbc 100644 --- a/package.json +++ b/package.json @@ -234,7 +234,7 @@ "@web/storybook-prebuilt": "0.1.27-alpha.0", "cssnano/**/postcss-calc": "7.0.0" }, - "customElements": ".storybook/custom-elements.json", + "customElements": "projects/documentation/custom-elements.json", "maintainers": [ { "name": "saiye", diff --git a/packages/icons-editor/icons/sp-icon-editor-earth.ts b/packages/icons-editor/icons/sp-icon-editor-earth.ts new file mode 100644 index 00000000000..82b9fb12f8c --- /dev/null +++ b/packages/icons-editor/icons/sp-icon-editor-earth.ts @@ -0,0 +1,23 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { iliadCustomElementsDefine } from '@iliad-ui/base'; +import { IconEarth } from '../src/elements/IconEarth.js'; + +iliadCustomElementsDefine('sp-icon-editor-earth', IconEarth); + +declare global { + interface HTMLElementTagNameMap { + 'sp-icon-editor-earth': IconEarth; + } +} diff --git a/packages/icons-editor/icons/sp-icon-editor-format-align-bottom.ts b/packages/icons-editor/icons/sp-icon-editor-format-align-bottom.ts new file mode 100644 index 00000000000..5d156ce3057 --- /dev/null +++ b/packages/icons-editor/icons/sp-icon-editor-format-align-bottom.ts @@ -0,0 +1,26 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { iliadCustomElementsDefine } from '@iliad-ui/base'; +import { IconFormatAlignBottom } from '../src/elements/IconFormatAlignBottom.js'; + +iliadCustomElementsDefine( + 'sp-icon-editor-format-align-bottom', + IconFormatAlignBottom +); + +declare global { + interface HTMLElementTagNameMap { + 'sp-icon-editor-format-align-bottom': IconFormatAlignBottom; + } +} diff --git a/packages/icons-editor/icons/sp-icon-editor-format-align-medium.ts b/packages/icons-editor/icons/sp-icon-editor-format-align-medium.ts new file mode 100644 index 00000000000..0be5dcfc8c9 --- /dev/null +++ b/packages/icons-editor/icons/sp-icon-editor-format-align-medium.ts @@ -0,0 +1,26 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { iliadCustomElementsDefine } from '@iliad-ui/base'; +import { IconFormatAlignMedium } from '../src/elements/IconFormatAlignMedium.js'; + +iliadCustomElementsDefine( + 'sp-icon-editor-format-align-medium', + IconFormatAlignMedium +); + +declare global { + interface HTMLElementTagNameMap { + 'sp-icon-editor-format-align-medium': IconFormatAlignMedium; + } +} diff --git a/packages/icons-editor/icons/sp-icon-editor-format-align-top.ts b/packages/icons-editor/icons/sp-icon-editor-format-align-top.ts new file mode 100644 index 00000000000..3d202dbc8e8 --- /dev/null +++ b/packages/icons-editor/icons/sp-icon-editor-format-align-top.ts @@ -0,0 +1,26 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { iliadCustomElementsDefine } from '@iliad-ui/base'; +import { IconFormatAlignTop } from '../src/elements/IconFormatAlignTop.js'; + +iliadCustomElementsDefine( + 'sp-icon-editor-format-align-top', + IconFormatAlignTop +); + +declare global { + interface HTMLElementTagNameMap { + 'sp-icon-editor-format-align-top': IconFormatAlignTop; + } +} diff --git a/packages/icons-editor/src/data.json b/packages/icons-editor/src/data.json index 12723d6184f..2ce4f860637 100644 --- a/packages/icons-editor/src/data.json +++ b/packages/icons-editor/src/data.json @@ -7,7 +7,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0911ccfd-e4cf-4958-80d9-d88c8d4bc1b1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b19bc6ca-20e1-4f5c-80d4-80f9c8905ed5" }, "25:28": { "name": "label_y", @@ -17,7 +17,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b3ccb772-e55b-48ef-8086-84e54a5f7c33" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f71a605b-611c-46b7-aa75-04bb4084cb0a" }, "382:510": { "name": "label_z", @@ -27,7 +27,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e0afa489-8c4c-4c86-a3fd-12d6537448e7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ff57deda-40d3-4a44-90ed-f0696719382c" }, "91:383": { "name": "label_d", @@ -37,7 +37,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a6d47d0e-41b6-4707-a907-d4bfc591ff81" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0527f16c-c438-480d-bf61-442761758235" }, "91:392": { "name": "label_v", @@ -47,7 +47,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1f22d7b9-8a9e-4b78-b2f9-8aca6b1ea77e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e28eb968-5704-4ffb-bc2d-2a25cbf3fc21" }, "92:328": { "name": "label_c", @@ -57,7 +57,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ee6eda7d-109b-4149-a56d-8f8fb7c520dc" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2f73c77e-fc17-4cc6-8dc2-9154352bbc37" }, "97:478": { "name": "label_g", @@ -67,7 +67,17 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6740602d-5bec-4037-a114-b5891ce25ec8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a1408832-8b0e-4717-87e2-9fefb6a1c783" + }, + "964:933": { + "name": "unit", + "id": "964:933", + "key": "a444744c427420694ad8415e2f1eaf27c6bbe1fd", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f35ce808-09f5-45f0-826e-a0ed1cd325e5" }, "8:8": { "name": "command", @@ -77,7 +87,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/00a006f8-5b53-457c-9672-82ed5dadd949" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/90516d9b-7fa3-4eb7-9ce4-611c2c27442b" }, "97:457": { "name": "shift", @@ -87,7 +97,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d2935019-7aa2-430e-b580-959336d013da" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/64708e3e-07f3-4dd3-92d0-ff14d38b9821" }, "350:2642": { "name": "option", @@ -97,7 +107,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5992f8b5-b003-464b-b39d-c2a5941c9386" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ae593dab-b232-4746-91a8-0cee859216c7" }, "9:30": { "name": "backspace", @@ -107,7 +117,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a8f07bde-774d-4afa-a212-af037a145bde" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0960ca5a-45e6-49db-b4a1-c942e34dd2d5" }, "326:546": { "name": "label_openbracket", @@ -117,7 +127,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/208a9fd6-7f82-46aa-b4df-0d60dd9a1aea" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/06c7c171-2df7-407f-a6f2-b5b4f83530b3" }, "326:536": { "name": "label_closebracket", @@ -127,7 +137,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7fbe6716-adcc-4547-bf5d-8d89dc1de5a9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/34231568-75bf-43af-afa7-83cf30a95695" }, "0:36": { "name": "format_left", @@ -137,7 +147,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d1a48c89-debd-4481-b497-da679dcab3d7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/75a88a17-296f-41fa-89bc-1b47b45c8bb6" }, "0:38": { "name": "format_center", @@ -147,7 +157,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cd3d0cf0-ab5a-462b-bcbf-cd71078f59a1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1794a8d8-6566-43e9-815d-af4486fec4e8" }, "0:40": { "name": "format_right", @@ -157,7 +167,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fb5066fe-b77a-4e2c-88ec-b8fb038d073f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/67c40c9c-7af9-48eb-80d8-3b45adbaf605" }, "0:34": { "name": "format_justified", @@ -167,7 +177,37 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/08514ab6-15d4-4b91-b466-14459274ca07" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/451d2f1b-952c-4f4a-b777-c81c02d24e25" + }, + "1054:953": { + "name": "format_align_top", + "id": "1054:953", + "key": "189797a4f29c86836b55df4ef6566c98631a55e0", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2448a1ec-c7ab-4169-b597-34cc35849581" + }, + "1054:982": { + "name": "format_align_medium", + "id": "1054:982", + "key": "e47b7f89cba39c799d3f3afe055eb4e17156dd7d", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4259a0ad-3768-4665-a1c2-65397604be0e" + }, + "1054:894": { + "name": "format_align_bottom", + "id": "1054:894", + "key": "15b54cb4b38878666e72db83cf7a44a8a5371f2a", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/043d71ef-f15f-459a-99b9-20e2f4f5889f" }, "0:28": { "name": "format_pacing-lines", @@ -177,7 +217,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/eb7a36ce-8660-4297-9958-2bd9a03e3f5c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/86778798-3d12-4d8d-833a-53ae2edce226" }, "0:32": { "name": "format_spacing-letter", @@ -187,7 +227,47 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1ed5d543-db3b-498d-a4a8-5c1a3a72f3e9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/22c0863c-96c6-4b18-9c75-9976b865f55e" + }, + "0:20": { + "name": "text_underline", + "id": "0:20", + "key": "cea70280c54eebe13b5fe3a0d2555213bbfc8e6a", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/32f5e096-d798-4c8f-935f-a7d59bb3a1d0" + }, + "0:18": { + "name": "text_italy", + "id": "0:18", + "key": "b6bd1111cadfcdb0e8133b594f6ceccb8d0f12e3", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e4ec8529-cda6-4308-8cde-00d1b67dda2e" + }, + "0:24": { + "name": "text_deleteline", + "id": "0:24", + "key": "9947d751378e299392bc80e82a51f3d1191cf9f7", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0b82bcd9-9199-4b21-add3-0f7943dd336b" + }, + "0:13": { + "name": "text_bold", + "id": "0:13", + "key": "8da05e5b470b4a373c0bbc5636689bb5411f4e09", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4d8352ca-b85d-4145-9f6e-186668b33559" }, "20:109": { "name": "format_list_bulleted", @@ -197,7 +277,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/244675ad-4b97-4f20-9ded-13269a74c63e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5b38db02-42ba-404a-9702-f95c7de89943" }, "20:113": { "name": "format_list_numbered", @@ -207,7 +287,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/df3b5edf-ca01-4772-8ae6-5a1482c7f775" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a9083de9-c2cb-4e4b-8f89-e2f9af14692e" }, "20:131": { "name": "format_indent_decrease", @@ -217,7 +297,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d880798c-6659-4e09-89ce-30b188df2eec" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/03666133-4f07-42f1-9a3b-2d18cc07408e" }, "20:135": { "name": "format_indent_increase", @@ -227,67 +307,87 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fce2b859-5216-4378-9d94-e95119b76040" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/220576f5-2cdc-4cc7-82eb-0665744ad4c5" }, - "0:20": { - "name": "text_underline", - "id": "0:20", - "key": "cea70280c54eebe13b5fe3a0d2555213bbfc8e6a", + "0:8": { + "name": "text_scale", + "id": "0:8", + "key": "40c3e7f54f9d3faf30dd417f0170405d51d1559f", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/849f34bf-f373-4980-ba9c-1f56bdc2b138" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/db95cd46-8dd2-408c-92c6-c1830ddc4892" }, - "0:18": { - "name": "text_italy", - "id": "0:18", - "key": "b6bd1111cadfcdb0e8133b594f6ceccb8d0f12e3", + "323:573": { + "name": "display", + "id": "323:573", + "key": "f194fd3c58d1d8ccee1f644bdce3834cffa63ffe", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ed974c9e-e9d2-4034-88c2-ed56850b1446" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f8947972-bc09-4d6b-bb8b-4cc62d546bf3" }, - "0:24": { - "name": "text_deleteline", - "id": "0:24", - "key": "9947d751378e299392bc80e82a51f3d1191cf9f7", + "20:105": { + "name": "none", + "id": "20:105", + "key": "5e84a169009417664d92bd3c092d881b534d2565", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cf5a3a0d-47a0-499d-803c-1d109164d1f0" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/27289214-0f40-483c-b95c-a3bcfad18bbe" }, - "0:13": { - "name": "text_bold", - "id": "0:13", - "key": "8da05e5b470b4a373c0bbc5636689bb5411f4e09", + "36:87": { + "name": "add", + "id": "36:87", + "key": "bc473d3c8945f5a30eb87b218fdd838b54f31377", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0dc6b156-621c-4929-be77-a34b0c296a4a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/88fdb479-d729-480f-b688-61f458004230" }, - "0:8": { - "name": "text_scale", - "id": "0:8", - "key": "40c3e7f54f9d3faf30dd417f0170405d51d1559f", + "24:49": { + "name": "remove", + "id": "24:49", + "key": "c2b7ce32bbe0c88332fee448fe37cfe53a07f8cf", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1b4270a9-44bf-4ea2-b2a2-bb4b2aa10113" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7721e2ba-5ee8-400b-a8f5-35737440ccd4" }, - "20:105": { - "name": "none", - "id": "20:105", - "key": "5e84a169009417664d92bd3c092d881b534d2565", + "4:32": { + "name": "close", + "id": "4:32", + "key": "22fc02dbf07dc9510610d33078f078d015863dd3", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bcf292de-aa57-4e40-865f-8cf0a52aef49" + }, + "51:236": { + "name": "done", + "id": "51:236", + "key": "03c6d7bdfe7ec8213b3be16f6cdf5c9379260757", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5a1f8657-96e4-4873-a632-d3503d2bef15" + }, + "902:739": { + "name": "clear", + "id": "902:739", + "key": "716ccf8e6c8a2e4df50e29af1fc9060b083ed3da", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e030274f-7449-406a-b6d1-21a6becc4b0c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/28c77fc9-5649-4122-a0e1-b3f8047487aa" }, "36:102": { "name": "menu", @@ -297,7 +397,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fe65f26a-1f66-46d4-9135-f5537dbe3b2c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/56c936f2-c686-4f0a-8d94-6948cbd96771" }, "36:98": { "name": "pages", @@ -307,7 +407,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/098a2672-e722-4e66-96da-5f5a5d7b413e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e011ec07-834b-41d4-ac5f-b9212e780a5f" }, "36:93": { "name": "layers", @@ -317,7 +417,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2fa3dad0-8ad7-43b1-91cf-5aa92369e746" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/99081e18-6aa3-4408-bfa6-c153e1b34116" }, "36:88": { "name": "theme", @@ -327,7 +427,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/61f290b0-b3aa-4db5-84bd-da20a994eef4" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c9eb763a-172f-4c14-9431-02984cf42e1a" }, "10:9": { "name": "home", @@ -337,7 +437,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1b77f4dd-13a6-419f-b93f-61c13f03c830" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7720fdd5-002a-4d6b-990f-40e10cf811d0" }, "36:106": { "name": "desktop", @@ -347,7 +447,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/caffea5d-607d-4f3e-b99f-85d536796500" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8c1ec213-8d71-4012-8f9b-b001b6b3b224" }, "36:110": { "name": "tablet_mac", @@ -357,7 +457,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a842f283-fdbd-428e-a6af-87b7fefa8907" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/25455111-dff4-486d-a3f8-eaf0c623a3f4" }, "36:114": { "name": "smartphone", @@ -367,27 +467,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/caac5eca-7f93-41e0-94bf-c50b5c268b7b" - }, - "43:204": { - "name": "cloud_off", - "id": "43:204", - "key": "be4c1971c9e6e45dc6b24bf3f7742f916719c28c", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3abcb005-19b9-473b-b46c-9c2422820696" - }, - "43:210": { - "name": "cloud_done", - "id": "43:210", - "key": "075aa84be8d8327f005344fa8864a6490158987b", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/eef5d31b-0580-4cd0-836a-cba183e75d93" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b5f1b3f9-854b-4cd2-a9d0-303949d01996" }, "37:203": { "name": "tune", @@ -397,7 +477,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d0c9655e-ff8b-4181-81c5-24a7d550cb2a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8e6be04b-d666-4483-989f-677b6644137c" }, "36:132": { "name": "undo", @@ -407,7 +487,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/91f695e7-fcb4-4a9e-bd46-ab5b916b047a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/829c677f-c507-485d-8e3c-2e22c489d83d" }, "36:131": { "name": "redo", @@ -417,7 +497,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1bcd8cdc-0136-4104-9e7f-9c7cc0ba5def" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4323ffd0-0af0-4b84-87a7-af94e7880c2f" }, "932:766": { "name": "open_in_new", @@ -427,17 +507,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6acfe303-9910-4ae5-9dea-b09aacfda294" - }, - "43:217": { - "name": "qr_code", - "id": "43:217", - "key": "bcf512788d7d302cceddb44f094419d873705215", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b18eca26-62b9-4164-ba3e-d77c1a101b9a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/19763ff7-95c9-46a1-ad64-62f4024750ca" }, "510:619": { "name": "easeOutQuad", @@ -447,7 +517,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1046ffce-f2f3-4046-b321-7648a9ee55d3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/826f753a-f901-4f44-98ef-eb547e97f6c1" }, "510:650": { "name": "easeInQuad", @@ -457,7 +527,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ee24ecaf-9ead-45f5-ac2d-a5d143b6246a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f7cad52a-3fdc-4fea-b18b-3eaeb9101aae" }, "510:672": { "name": "easeOutCubic", @@ -467,7 +537,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4695639b-4929-4b62-b201-c78dcba6dd93" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/85197941-9b6d-4cac-befb-d748dbb32877" }, "510:694": { "name": "easeInCubic", @@ -477,7 +547,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6cab243e-69d0-481b-9afa-53a4085460bf" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/63d628e9-3865-438c-a403-8655d7e4dc02" }, "510:732": { "name": "easeInOutCubic", @@ -487,7 +557,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2fafbdb4-a3ed-4879-8ab9-19ac50df5980" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1efcc090-57be-4608-ab76-ae6b9f36e9d6" }, "510:754": { "name": "easeOutBack", @@ -497,7 +567,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/32110b00-59c3-4763-8ae3-8ad3237d622b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/38fc3bf0-7dc9-40b6-9b2e-8540cd6a292c" }, "510:776": { "name": "easeOutElastic", @@ -507,7 +577,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d52b8a61-b1d9-48db-aa42-19c646ccf2c0" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/23f2509c-f66a-4f96-bc71-8ceec23e8fff" }, "510:798": { "name": "easeOutBounce", @@ -517,7 +587,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f72b6f72-27c4-4889-9b0d-afcdc43dc894" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f8f5eea0-9e96-4237-a177-4fe8fa0befee" }, "511:661": { "name": "linear", @@ -527,7 +597,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/205b0304-a2bf-4a67-829c-5f034209d0c1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5ce89028-209a-44d1-a956-9f1bed5fcea5" }, "37:214": { "name": "text", @@ -537,7 +607,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/07111d3a-f634-427a-9897-7467d167c779" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3801a9fa-22e0-4ee2-81c1-e6dcef38de82" }, "37:219": { "name": "paragraph", @@ -547,7 +617,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b11e414e-8686-46d8-94ba-d0c5f2ff61da" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7800ae78-a558-450f-b8a2-d450e79653a3" }, "37:223": { "name": "image", @@ -557,7 +627,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/648939d0-2166-4680-8f43-13eb8e85f32a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2455a357-1500-408e-9659-02885c8e9b64" }, "37:227": { "name": "container", @@ -567,7 +637,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0eaf0c78-df57-4b94-8ec6-e5ec42df7b75" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2955db4a-058f-4441-9b09-83f6bdc351c3" }, "320:472": { "name": "layout_vert", @@ -577,7 +647,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7d412c3e-e81c-43e8-b6c2-1d665590c89a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ed29447f-991e-4379-8558-2438833f6e0d" }, "320:517": { "name": "layout_horz", @@ -587,7 +657,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6f0eb497-e20c-44ad-a169-f73bb2c07744" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9c84e3ed-512c-4ec0-86b8-1fce128a8670" }, "958:894": { "name": "layout_sliding", @@ -597,7 +667,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b67fd160-781b-4b02-afbd-60c6cf8d3952" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/07fb1cde-9aa4-4cf0-8269-ff02770ec375" }, "959:958": { "name": "layout_wrap", @@ -607,7 +677,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f5f82efd-b068-47f0-a077-93567b321a37" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/00e9f72f-e0ad-4fe8-b8af-1b811e783e10" }, "967:1005": { "name": "layout_pageturn", @@ -617,7 +687,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/392fe52d-e9a5-490f-8e3d-692f4bc89021" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ff9da0de-2f0d-49f6-aedb-963040617558" }, "959:999": { "name": "section", @@ -627,7 +697,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5e824eae-2e2f-4b1e-8c09-51582bc9b61c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a18d0a50-95e8-4647-97db-395eab606957" }, "439:552": { "name": "materiel", @@ -637,47 +707,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3cdf5e76-034b-4371-adfb-e73471b90949" - }, - "36:87": { - "name": "add", - "id": "36:87", - "key": "bc473d3c8945f5a30eb87b218fdd838b54f31377", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/55792e2e-8ff4-4810-903a-7e535265541c" - }, - "24:49": { - "name": "remove", - "id": "24:49", - "key": "c2b7ce32bbe0c88332fee448fe37cfe53a07f8cf", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/921c39ed-abcc-4626-8f73-52838c8563d1" - }, - "4:32": { - "name": "close", - "id": "4:32", - "key": "22fc02dbf07dc9510610d33078f078d015863dd3", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/562fac3e-d8ac-4957-9d5f-d91a37393d9a" - }, - "51:236": { - "name": "done", - "id": "51:236", - "key": "03c6d7bdfe7ec8213b3be16f6cdf5c9379260757", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6ea7f96c-684e-4ada-bc70-1cedaee454ca" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/484abe80-55d7-426f-900c-7d9355567832" }, "25:97": { "name": "arrow_left", @@ -687,7 +717,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/00cae0e5-5c6a-4b4b-ab3f-8264d0fd640f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a356d747-ab2a-4c2e-8f45-b4c6ec23eca8" }, "25:117": { "name": "arrow_right", @@ -697,7 +727,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/63dd1e1e-a800-4558-82fd-58d9412b3a91" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ed96b117-3c03-4a46-9a79-76029e42f2e6" }, "83:353": { "name": "direction_down", @@ -707,7 +737,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a3d4ea27-6e3f-4e05-adb6-60df2a18dfce" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/606ed5c9-83db-4f4b-bcbf-3e9a88ef0599" }, "83:360": { "name": "direction_right", @@ -717,7 +747,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/59559df9-c8da-4a75-8f06-992ba39b2289" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/325f11cf-356f-4d41-b9dd-1d4437dcf830" }, "91:351": { "name": "direction_up", @@ -727,7 +757,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1c235958-37cd-49cd-a977-06b95331af46" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e82d4bae-df90-451d-b68f-156926fc4119" }, "91:358": { "name": "direction_left", @@ -737,17 +767,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3e007eef-a7c9-4845-af4e-7b88c1a40041" - }, - "409:535": { - "name": "direction_center", - "id": "409:535", - "key": "b69f9086bc8339402d9de0eccf7b1c53026e5570", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/dd5e5549-1433-4828-bb35-94f7d8912f7f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/29845a67-ee80-41d9-9932-7c73902ea24b" }, "37:207": { "name": "arrow_down", @@ -757,7 +777,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f166e607-5fc2-41e5-a518-c1440e38b3ee" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/672a04ad-18a1-45b7-9dc9-ccf747442543" }, "54:237": { "name": "arrow_right", @@ -767,7 +787,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c0fba3fc-5b8f-4ab4-bcd3-d34f70d79e56" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/edb29b7c-bc5e-4f02-8e7c-20e4457e5c9f" }, "30:21": { "name": "slider_invisible", @@ -777,27 +797,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a4b07f1a-5437-432c-bf9e-2cac27cd478b" - }, - "902:739": { - "name": "clear", - "id": "902:739", - "key": "716ccf8e6c8a2e4df50e29af1fc9060b083ed3da", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0477e565-69b6-46a7-bab2-01b45f6f860f" - }, - "323:573": { - "name": "display", - "id": "323:573", - "key": "f194fd3c58d1d8ccee1f644bdce3834cffa63ffe", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cc3eaf7b-6bbf-44c5-92c4-518deca73104" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f59a9be9-0c5a-4a1d-b72a-e42bf15c7cf9" }, "406:539": { "name": "arrow_triangle", @@ -807,7 +807,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a84b412a-884f-4de1-b6b5-4678575c9b74" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ea1de76a-59ad-4872-acb7-e0544cc3e362" }, "60:260": { "name": "page_header", @@ -817,7 +817,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2fd0779a-29f1-42dd-97b9-347e2d6772c9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7418bb67-956e-4e31-87d5-49c929a0cfef" }, "65:509": { "name": "page_footer", @@ -827,7 +827,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e73bf329-97a1-4903-bccb-49c746342ed4" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a3c6908c-e898-451b-a0e5-192a80d4d427" }, "65:522": { "name": "video", @@ -837,7 +837,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9cb0ae6a-4e3b-456d-b4c6-ce7f7b8c6129" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b817a848-a647-4297-9bfe-dbf27b65c63b" }, "65:550": { "name": "star", @@ -847,7 +847,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4485db65-8a6a-45d0-8ff5-6b64145cb09c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/15c0a82e-72cc-400c-8a56-2373e08a2b31" }, "66:335": { "name": "file_folder", @@ -857,7 +857,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/171a7cbb-994a-412a-95f5-3b2f96820fbc" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9d9f9b82-5b61-4f86-b01f-9426c28c605d" }, "65:583": { "name": "contacts", @@ -867,17 +867,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f96939d2-3df1-422e-ab06-e1c0bd8f4a4a" - }, - "52:720": { - "name": "animation", - "id": "52:720", - "key": "9ab5246c41828b842eef4525cbad8e822626fd57", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f9466fbd-b3a5-45e9-8c13-94bb7563ca14" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/93a60d0a-8f7c-4f37-be09-b1785259f670" }, "52:739": { "name": "rotate_left", @@ -887,37 +877,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/645e316a-a365-4147-9f2d-8b34a8268654" - }, - "52:592": { - "name": "open_full", - "id": "52:592", - "key": "a9a067a6325b6dc84cfd52a0a239ca9eb16b6404", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8ffb15fa-cd90-4285-beba-76ac5b62e623" - }, - "52:682": { - "name": "close_full", - "id": "52:682", - "key": "949d078c79ba79b5bd208f60fa7aee7e7ed4d242", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4b3d8813-6001-4386-8fa5-197f8ad13443" - }, - "964:933": { - "name": "unit", - "id": "964:933", - "key": "a444744c427420694ad8415e2f1eaf27c6bbe1fd", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f3510539-97c0-4c1f-b444-436373080105" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b7eff36c-7b7d-4f84-bb58-224792b61c05" }, "314:443": { "name": "width_fixed", @@ -927,7 +887,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a31f066e-7c34-413b-bd41-7e422e980009" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f10f067e-63fd-42e5-89e7-9f346db4672c" }, "314:416": { "name": "width_fill", @@ -937,7 +897,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4db8c968-2c8a-458c-9310-91bb63c0dbd5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/563058d6-4e17-4e92-812a-c61797600f5b" }, "314:531": { "name": "width_hug", @@ -947,7 +907,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/23362610-ceab-4580-a6c3-cd45250e6871" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a680c788-300e-47db-8653-8763c6f3aab0" }, "314:518": { "name": "height_fixed", @@ -957,7 +917,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/aa959bf7-0c39-4649-a723-623325fe8a89" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6f55fd16-c00f-4175-af3c-5b73662184e0" }, "314:571": { "name": "height_fill", @@ -967,7 +927,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c97dd41b-ece3-444e-970e-9681b74a9aea" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cd5c28b3-e180-4b42-9ccd-46a5e13548fd" }, "314:581": { "name": "height_hug", @@ -977,37 +937,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4f0451da-de27-40ba-bb26-803b36beedce" - }, - "65:412": { - "name": "crop", - "id": "65:412", - "key": "607e3590c4cf0e80f63116137bc5d00c40362036", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ee01cfe9-4e40-414d-971e-3eab683fd447" - }, - "65:417": { - "name": "focus", - "id": "65:417", - "key": "6bfb7b87517058561a60190ce5195e3514fc4612", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1198680c-6d62-46ca-9f2f-b7fa44873409" - }, - "402:510": { - "name": "time", - "id": "402:510", - "key": "cefb3e4c537fdba4d2dc295a44f817635fe11ecf", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/60a4d854-c4d0-4045-af56-4cbf37cdc125" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/269ed22f-6729-41ad-9822-3e060e4141c7" }, "10:22": { "name": "settings", @@ -1017,27 +947,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/754887bd-307b-44c0-b572-67f439f92fc8" - }, - "10:102": { - "name": "stop_circle", - "id": "10:102", - "key": "a468b8ec1d0f5234a4f473f23d3d948adbb16f25", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e91bb84a-dbf7-4346-b0e4-6f7284d6223a" - }, - "10:109": { - "name": "data_barchart", - "id": "10:109", - "key": "c34037020b041d4c8e5c3216b190932fd23cbfc6", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/25350af6-64f1-4dcd-a2e2-6c18f087d029" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5599087d-8bfe-4646-9897-9214dc70ccb9" }, "922:781": { "name": "import", @@ -1047,27 +957,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/acf92779-53f4-4c61-957e-643ad33fb743" - }, - "935:783": { - "name": "figma", - "id": "935:783", - "key": "0de4afbaf7c37f4a824aeb91b349f30775a1a794", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/024683e4-58a3-4990-a241-c646d67c4782" - }, - "924:780": { - "name": "global", - "id": "924:780", - "key": "779c7d1ed2335fee5772451ab3e0b9413715a633", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9b12d85d-1b58-41e1-9ab5-11062c21f196" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e9220741-58db-4cd0-bd4a-0c0a13da4ed9" }, "10:117": { "name": "link", @@ -1077,7 +967,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8e2b9012-df21-4556-96eb-7e85f6c22af8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/794f2268-38df-4643-a99d-4085e733c007" }, "21:46": { "name": "locked", @@ -1087,7 +977,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e701eb44-db40-48c8-aa0c-7c8d2d64037e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/86056eff-a300-4360-9306-c99248faccd7" }, "21:54": { "name": "unlocked", @@ -1097,7 +987,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/686894bd-49d9-4481-8d60-737124b9b022" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d08f0197-b40e-41b1-a47d-295f715c78b3" }, "24:56": { "name": "eye", @@ -1107,7 +997,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4ac4f00e-c697-42db-ac04-61502b66a641" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/71c704d5-9025-41d1-a28f-6b63f88d59b2" }, "52:645": { "name": "eye_off", @@ -1117,7 +1007,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f31ff45e-3964-4201-a0cc-998808773100" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7f9037c7-93ab-4370-b893-4511c6767002" }, "65:301": { "name": "eye_display", @@ -1127,7 +1017,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0f706e6f-1ee7-41e1-9062-0e0a9dd78c5a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3824c732-8135-420a-ae80-e1d002338e33" }, "301:399": { "name": "play", @@ -1137,7 +1027,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5626b2f6-68f5-4768-889e-c6c304b80b8a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/321f86d8-acef-476b-9683-9815406dbd9d" }, "410:565": { "name": "stop", @@ -1147,7 +1037,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/12bf5d60-d3e9-4650-bea8-d76f20f7a417" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9d83cf55-5025-44cd-bc82-b8d72bfb6336" }, "304:400": { "name": "edit", @@ -1157,7 +1047,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9798af8d-8579-4c86-a9fc-6dec7e93dba6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/53bbcf28-9432-4cec-a061-c6e456be4fbb" }, "25:161": { "name": "colorpicker", @@ -1167,17 +1057,67 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/08e401c5-5fc0-4a09-a40e-1931afa74e65" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6edfe8ed-ec78-4a7e-b57d-cd8713c81fc1" }, - "490:565": { - "name": "fixed", - "id": "490:565", - "key": "8172867737dbbc45a5d4393162e3e46c26968f8d", + "52:720": { + "name": "animation", + "id": "52:720", + "key": "9ab5246c41828b842eef4525cbad8e822626fd57", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d1178bdf-608e-4dee-98b5-a6061a5f42de" + }, + "65:412": { + "name": "crop", + "id": "65:412", + "key": "607e3590c4cf0e80f63116137bc5d00c40362036", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/08f211bf-50b1-45d6-9727-7ed775f1b532" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/451a1283-bccd-4433-af8e-3fd8482b910a" + }, + "65:417": { + "name": "focus", + "id": "65:417", + "key": "6bfb7b87517058561a60190ce5195e3514fc4612", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5d9822b3-1422-464f-b931-015e8f3a6c0d" + }, + "52:592": { + "name": "open_full", + "id": "52:592", + "key": "a9a067a6325b6dc84cfd52a0a239ca9eb16b6404", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1e29dbad-1866-4578-abc0-67ecaf775e8d" + }, + "52:682": { + "name": "close_full", + "id": "52:682", + "key": "949d078c79ba79b5bd208f60fa7aee7e7ed4d242", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b6c05fc3-b31f-4895-bfed-5b81d96131fe" + }, + "409:535": { + "name": "direction_center", + "id": "409:535", + "key": "b69f9086bc8339402d9de0eccf7b1c53026e5570", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/482051b7-1393-4e39-88cb-611b0a7f209f" }, "18:14": { "name": "align_left", @@ -1187,7 +1127,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2fe6dae5-9041-4407-97f4-847537131bad" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8903fc45-5654-46eb-b98a-eb2cc838fc41" }, "18:83": { "name": "align_horiz_centers", @@ -1197,7 +1137,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a7229dea-4240-4165-a930-9f6d88b97a05" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7f338d26-7ac5-4f0b-9b2d-4e02f5cd0524" }, "18:94": { "name": "align_right", @@ -1207,7 +1147,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ab82f756-d175-42d6-8321-283669217663" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/574fcc68-0129-4803-a881-54b962c5b2fa" }, "18:92": { "name": "align_top", @@ -1217,7 +1157,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/48ff64f2-4541-4c75-859b-fe012ec9dcd6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d10b69b5-d496-440d-83b9-28a8b13c4dcf" }, "18:90": { "name": "align_vert_centers", @@ -1227,7 +1167,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/dd7e5190-af4a-484b-93ca-de04af1ca709" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/08e93319-8e84-413e-b4e9-a775aa458ebc" }, "18:88": { "name": "align_bottom", @@ -1237,7 +1177,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/dcbfc83b-ac65-4bb8-939e-c26a66765dc8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/839efcf1-e4d5-4822-878b-9ee97400bd0c" }, "18:86": { "name": "align_arrange_horiz", @@ -1247,7 +1187,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4155afe1-ca1e-4de5-b8bd-4ebed9844401" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2f2662f9-40dc-4624-877a-5861dbd4d03f" }, "18:84": { "name": "align_arrange_vert", @@ -1257,7 +1197,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bacd6fa7-2c99-4fde-997e-25ef38029b1a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8c204cca-dd5f-4492-9ff6-b0dfb7f6f700" }, "315:701": { "name": "vert_left", @@ -1267,7 +1207,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1c41d812-dedb-46f1-a1db-812a31ca6bcf" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d49509a6-8197-4c2d-8da3-ef68502b4e5d" }, "315:719": { "name": "vert_centers", @@ -1277,7 +1217,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e5390a2a-533b-4b19-9918-9468ab7ec37a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3681102a-0e69-4fb9-bc0b-23b9ba8ec8fc" }, "315:717": { "name": "vert_right", @@ -1287,7 +1227,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8557444e-1e49-4957-8856-433103cf09f6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/706e5046-8f51-428f-9234-8a2319aba35c" }, "315:715": { "name": "horiz_top", @@ -1297,7 +1237,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b7ddc22c-2f98-4f1b-afe7-f27b8e576460" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d84bde30-5522-4178-855f-d12c982208c6" }, "315:713": { "name": "horiz_centers", @@ -1307,7 +1247,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e164d274-aefb-405a-810a-230dee65becd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/58eb14aa-70f2-4fa4-92c1-40362bf20b2d" }, "315:711": { "name": "horiz_bottom", @@ -1317,7 +1257,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0f7bc4e0-69b1-4625-8ac2-12e3532a9994" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f519fcbb-949c-4218-999a-50b67b41ae12" }, "815:839": { "name": "crop", @@ -1327,7 +1267,7 @@ "description": "", "width": 28, "height": 28, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/64287ded-9a9a-4822-a623-d03eb93a9f3c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ed268008-b33e-4f73-9f99-a24be4dd6a52" }, "815:863": { "name": "file_outline", @@ -1337,7 +1277,7 @@ "description": "add, create, new, plus, +", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9d94f40f-f08f-4844-9ce2-d81968882d86" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a2f8f9e8-c728-41f3-8b38-5116164040e3" }, "815:869": { "name": "grid_outline", @@ -1347,7 +1287,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cd6d85d8-04f0-4b7f-a1d4-e33f758ccac8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5c7f1cf7-725d-4ab8-8990-c36c3f38b498" }, "10:122": { "name": "help", @@ -1357,7 +1297,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/282fcd92-6ec3-4f62-980a-1b9246ed0cbe" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b7031b20-e367-408f-acb7-8d8989cc8712" }, "65:330": { "name": "check", @@ -1367,7 +1307,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/de180f6c-508a-44a6-968b-b51eb3925d97" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8bf55450-a08b-4d1e-ba9d-792ba8425d34" }, "65:350": { "name": "info", @@ -1377,7 +1317,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2415378b-3fa6-4ef1-afa3-61a10c83df31" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8aafb1df-627b-48d0-b1aa-6787f43e7b06" }, "65:373": { "name": "alert", @@ -1387,7 +1327,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/66b52a72-16c7-4e56-9de9-59d76d208574" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/61a3c460-dce6-4462-b938-d565ca476f89" }, "108:396": { "name": "help_fill", @@ -1397,7 +1337,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1c63f6a6-40dc-4679-9415-838be5891bdd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/790ee51e-f159-4592-bfbd-f65c94607475" }, "109:392": { "name": "check_fill", @@ -1407,7 +1347,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1b1eb8f7-7858-451c-a5d8-8dc49fab4d98" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/625c83d1-6fc8-4d3c-b090-86cb41db3d95" }, "109:393": { "name": "info_fill", @@ -1417,7 +1357,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7624b744-0cf3-482d-9d94-50374ff7443a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1b09d7b7-dd1c-45ac-8ce1-614a0cbb2337" }, "109:394": { "name": "alert_fill", @@ -1427,7 +1367,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3968b3f2-b2f9-43f7-882d-0f4f4da45c52" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5649e5db-7f5e-40c0-90e0-59a542d4961c" }, "818:886": { "name": "radio_button_unchecked", @@ -1437,7 +1377,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f38ca99e-b01c-4964-a507-ec99276b12f8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0d449d73-0ee0-4c2c-ab89-91bc6cdb6a45" }, "23:18": { "name": "corner", @@ -1447,7 +1387,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a3550635-563d-44c7-b425-2101f05f0e22" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b4c5201c-9e8f-48d9-8307-b4b20e5a5849" }, "37:29": { "name": "corner_radius_top_left", @@ -1457,7 +1397,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4bf3a9f2-dfea-4ef0-87e3-1a8e50f96d15" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4c7d91d4-47ae-4eac-a111-90394ab1927d" }, "37:35": { "name": "corner_radius_top_right", @@ -1467,7 +1407,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/48691448-90af-4abe-be65-6e13231475aa" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/58e69c92-64d2-411e-964e-595424f037dc" }, "37:45": { "name": "corner_radius_bottom_left", @@ -1477,7 +1417,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/886c86bc-7041-4405-86cb-48dd89bbe845" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/651cbfb3-c65e-4a37-b6e4-7e4ef02c12a1" }, "37:40": { "name": "corner_radius_bottom_right", @@ -1487,7 +1427,97 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cb25acf8-7949-4255-8690-0cd1d3f784c9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fd044b0e-d6be-4bb4-b30e-fff26426ee31" + }, + "953:784": { + "name": "wrap", + "id": "953:784", + "key": "fb9efac4b4c344a0c67ff2f9eb92bec53b66cd34", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7157f920-ede3-4dce-a213-e55934438055" + }, + "955:831": { + "name": "padding_independent", + "id": "955:831", + "key": "587e92f08626b1c5cfbf5ca4bc5846d71730a626", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/278476c2-8b9f-4a68-bcad-07e6b929c025" + }, + "966:980": { + "name": "padding", + "id": "966:980", + "key": "3bab8ae69c6cb3fad2757f62c5244a3bc79887a7", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ec71d124-731b-4e51-a346-7812cdfec122" + }, + "954:847": { + "name": "padding_left", + "id": "954:847", + "key": "183e993d332e42c01966f883742236b9a3e5317d", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/05019482-7b5b-4ad5-84d8-7c141c0867b0" + }, + "963:891": { + "name": "padding_right", + "id": "963:891", + "key": "e0a03ad023d50aa27b2f91467f730bfe15c6cf27", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ae89818f-7bdd-473f-9e3c-03f6af63951d" + }, + "954:884": { + "name": "padding_top", + "id": "954:884", + "key": "11b601d3028511943585ee8ad7adcaed8d7d11e5", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f4e5e5c5-5f8f-47d1-a64e-15a4bf9dcd51" + }, + "963:917": { + "name": "padding_bottom", + "id": "963:917", + "key": "1c25f518abc2e60c4b1c1b18dde101392f273046", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d8287b78-c200-4151-9b55-fd08d3920369" + }, + "954:1003": { + "name": "spacing_horiz", + "id": "954:1003", + "key": "bddf8c27ac1b182743ab104e1451ca7f67ef67a0", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f1d3d224-839b-4703-b48b-14451e441191" + }, + "954:970": { + "name": "spacing_vert", + "id": "954:970", + "key": "f4974b93bfeb6fc517fe7d7ecd5b8088230da582", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/48eb6c6f-f82e-44fc-9945-672b51a3cd5b" }, "786:735": { "name": "style", @@ -1497,7 +1527,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/275cdad5-090c-41e3-bddf-0aa4a56a24e6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/34be52d3-d5ec-42f4-931e-ce47693f57a5" }, "25:171": { "name": "more_horiz", @@ -1507,7 +1537,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/81a5a8b7-b578-43e4-92e3-91ffe5aa28c4" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1afb5f38-993c-4d03-af08-94dd758defb9" }, "24:18": { "name": "drag_handle", @@ -1517,117 +1547,137 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7b0c4b89-6477-4013-868b-14089fa25e93" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/142a8370-45ba-459d-864e-2e9bdeac3b19" }, - "919:758": { - "name": "loading", - "id": "919:758", - "key": "7e8b891660d3ffd38214eaaee3a85e24e98a83fc", + "10:102": { + "name": "stop_circle", + "id": "10:102", + "key": "a468b8ec1d0f5234a4f473f23d3d948adbb16f25", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a8a0463e-f55d-4ef1-88ac-7ec74db77e9c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ac277475-7bcf-4b78-9b67-897742b234bd" }, - "922:764": { - "name": "loading_white", - "id": "922:764", - "key": "8af2e44f5adb0123884e07edf280ed7c6da23040", + "10:109": { + "name": "data_barchart", + "id": "10:109", + "key": "c34037020b041d4c8e5c3216b190932fd23cbfc6", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/db147f25-46fe-4356-8d78-a5102ffdc767" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b3b4e2ce-6f1c-468e-a158-f004a922dd8e" }, - "953:784": { - "name": "wrap", - "id": "953:784", - "key": "fb9efac4b4c344a0c67ff2f9eb92bec53b66cd34", + "935:783": { + "name": "figma", + "id": "935:783", + "key": "0de4afbaf7c37f4a824aeb91b349f30775a1a794", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/206c4941-f650-4029-bd2b-4b94acce5f32" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/68b3e8d3-7b32-4115-ba6d-edfa1435a93c" }, - "955:831": { - "name": "padding_independent", - "id": "955:831", - "key": "587e92f08626b1c5cfbf5ca4bc5846d71730a626", + "402:510": { + "name": "time", + "id": "402:510", + "key": "cefb3e4c537fdba4d2dc295a44f817635fe11ecf", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3ee03cf5-7f05-4d7a-8441-66b1c5b61771" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fdbe9eed-8a8e-4809-9a22-ae16cee29a95" }, - "966:980": { - "name": "padding", - "id": "966:980", - "key": "3bab8ae69c6cb3fad2757f62c5244a3bc79887a7", + "924:780": { + "name": "global", + "id": "924:780", + "key": "779c7d1ed2335fee5772451ab3e0b9413715a633", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6a2437b2-aecd-4fab-a754-392b0aed7792" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/74e64028-0780-46a4-801e-d17ca5608629" }, - "954:847": { - "name": "padding_left", - "id": "954:847", - "key": "183e993d332e42c01966f883742236b9a3e5317d", + "1060:928": { + "name": "earth", + "id": "1060:928", + "key": "4478a3b8322744e73de1ecb5fb9c76509163aea1", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e34965e6-978b-4a34-8066-98a7778349c6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/df0d2cdf-5d3e-4abd-98d6-7094d9a08d8b" }, - "963:891": { - "name": "padding_right", - "id": "963:891", - "key": "e0a03ad023d50aa27b2f91467f730bfe15c6cf27", + "43:204": { + "name": "cloud_off", + "id": "43:204", + "key": "be4c1971c9e6e45dc6b24bf3f7742f916719c28c", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d92ddb64-3f8e-4e2a-80eb-9d702791da77" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/82b4488e-8631-48fd-a317-19db6db0aa60" }, - "954:884": { - "name": "padding_top", - "id": "954:884", - "key": "11b601d3028511943585ee8ad7adcaed8d7d11e5", + "43:210": { + "name": "cloud_done", + "id": "43:210", + "key": "075aa84be8d8327f005344fa8864a6490158987b", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/23644019-369f-4e70-8df3-4f70c31d5ab8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/76eb0668-1d76-4a6f-ba84-b774c09395fe" }, - "963:917": { - "name": "padding_bottom", - "id": "963:917", - "key": "1c25f518abc2e60c4b1c1b18dde101392f273046", + "919:758": { + "name": "loading", + "id": "919:758", + "key": "7e8b891660d3ffd38214eaaee3a85e24e98a83fc", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c87729a9-4c57-4033-94e8-7f373277090e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/40dff463-1174-44ba-aa37-b0a2b90d83f6" }, - "954:1003": { - "name": "spacing_horiz", - "id": "954:1003", - "key": "bddf8c27ac1b182743ab104e1451ca7f67ef67a0", + "922:764": { + "name": "loading_white", + "id": "922:764", + "key": "8af2e44f5adb0123884e07edf280ed7c6da23040", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/93e9bcb6-a45a-4419-b9b5-8c4b1d5ea81d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ba0c80f7-7473-4e43-b319-b017e181b545" }, - "954:970": { - "name": "spacing_vert", - "id": "954:970", - "key": "f4974b93bfeb6fc517fe7d7ecd5b8088230da582", + "490:565": { + "name": "fixed", + "id": "490:565", + "key": "8172867737dbbc45a5d4393162e3e46c26968f8d", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f4a25c08-c0c9-4a02-95ab-8bc461029ef2" + }, + "1065:957": { + "name": "focus", + "id": "1065:957", + "key": "f0340fbc30e410c5f6ef30744bb1ece3b1e20563", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4a5b97e7-fa31-494a-9172-1793bacd7574" + }, + "43:217": { + "name": "qr_code", + "id": "43:217", + "key": "bcf512788d7d302cceddb44f094419d873705215", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/72af2dd4-b3ce-4603-a831-aecc32755bac" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4f6afbed-e49f-4e5a-8e77-ead5d8fdb7c7" }, "512:726": { "name": "mouse_Hover", @@ -1637,7 +1687,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e0d01bf4-f53b-44c0-b606-08588358603e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0e67b7b1-9d4b-4b53-9679-3886c9429550" }, "403:511": { "name": "mouse_Click", @@ -1647,7 +1697,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3c4ae739-b36b-4236-81de-7e8e5e1ba3f8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/14fbd5ff-7fa2-45b0-bf1d-d117f0e7ac2c" }, "513:781": { "name": "scroll", @@ -1657,7 +1707,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e08b6412-b0e2-4a76-9931-3c60eed0e148" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4afd5d13-c54e-4372-86eb-dcdbd741fa6f" }, "905:809": { "name": "event", @@ -1667,7 +1717,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fecf887b-0958-412a-9af9-47f0fea45a28" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f127cc51-767f-4c59-a32f-b1d916e33c77" }, "404:540": { "name": "animation", @@ -1677,7 +1727,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6557c30a-7ece-450b-bf1e-c8d547acf8bd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8ed310d7-d44d-4259-aed6-3c5ee87eb2eb" }, "848:743": { "name": "trigger", @@ -1687,7 +1737,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/260474e6-bb3b-46ca-a7e2-9ffcf019e394" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8722f01a-e78b-4bc1-b80d-7311d80a5afe" }, "907:783": { "name": "effect", @@ -1697,7 +1747,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1d93cc9f-adde-4f16-aeed-974cf34d47a9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/78c02bb8-e714-4f47-9240-788ed2c4238a" }, "514:891": { "name": "move", @@ -1707,7 +1757,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/66e34dca-4947-40e9-b683-9854f42c3621" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7f3d68fe-429a-4d31-b3ad-087ce4b9648c" }, "514:901": { "name": "scale", @@ -1717,7 +1767,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/419b2bc5-ec3f-4e45-8036-21494a863aed" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9b6b64b9-1925-44b7-abe5-077f0b7b0b39" }, "514:911": { "name": "skew", @@ -1727,6 +1777,6 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9ccaad5c-34f9-4629-ad5c-ee5a793fd553" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fc221527-a668-46af-9b52-8f73fd4718db" } } diff --git a/packages/icons-editor/src/elements/IconEarth.ts b/packages/icons-editor/src/elements/IconEarth.ts new file mode 100644 index 00000000000..08adea3636f --- /dev/null +++ b/packages/icons-editor/src/elements/IconEarth.ts @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { IconBase } from '@iliad-ui/icon'; +import { EarthIcon } from '../icons/Earth.js'; +import { setCustomTemplateLiteralTag } from '../custom-tag.js'; + +/** + * @element sp-icon-editor-earth + */ +export class IconEarth extends IconBase { + protected render(): TemplateResult { + setCustomTemplateLiteralTag(html); + return EarthIcon() as TemplateResult; + } +} diff --git a/packages/icons-editor/src/elements/IconFormatAlignBottom.ts b/packages/icons-editor/src/elements/IconFormatAlignBottom.ts new file mode 100644 index 00000000000..e606756129d --- /dev/null +++ b/packages/icons-editor/src/elements/IconFormatAlignBottom.ts @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { IconBase } from '@iliad-ui/icon'; +import { FormatAlignBottomIcon } from '../icons/FormatAlignBottom.js'; +import { setCustomTemplateLiteralTag } from '../custom-tag.js'; + +/** + * @element sp-icon-editor-format-align-bottom + */ +export class IconFormatAlignBottom extends IconBase { + protected render(): TemplateResult { + setCustomTemplateLiteralTag(html); + return FormatAlignBottomIcon() as TemplateResult; + } +} diff --git a/packages/icons-editor/src/elements/IconFormatAlignMedium.ts b/packages/icons-editor/src/elements/IconFormatAlignMedium.ts new file mode 100644 index 00000000000..21fd11b1aa6 --- /dev/null +++ b/packages/icons-editor/src/elements/IconFormatAlignMedium.ts @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { IconBase } from '@iliad-ui/icon'; +import { FormatAlignMediumIcon } from '../icons/FormatAlignMedium.js'; +import { setCustomTemplateLiteralTag } from '../custom-tag.js'; + +/** + * @element sp-icon-editor-format-align-medium + */ +export class IconFormatAlignMedium extends IconBase { + protected render(): TemplateResult { + setCustomTemplateLiteralTag(html); + return FormatAlignMediumIcon() as TemplateResult; + } +} diff --git a/packages/icons-editor/src/elements/IconFormatAlignTop.ts b/packages/icons-editor/src/elements/IconFormatAlignTop.ts new file mode 100644 index 00000000000..25878720ed0 --- /dev/null +++ b/packages/icons-editor/src/elements/IconFormatAlignTop.ts @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { IconBase } from '@iliad-ui/icon'; +import { FormatAlignTopIcon } from '../icons/FormatAlignTop.js'; +import { setCustomTemplateLiteralTag } from '../custom-tag.js'; + +/** + * @element sp-icon-editor-format-align-top + */ +export class IconFormatAlignTop extends IconBase { + protected render(): TemplateResult { + setCustomTemplateLiteralTag(html); + return FormatAlignTopIcon() as TemplateResult; + } +} diff --git a/packages/icons-editor/src/icons.ts b/packages/icons-editor/src/icons.ts index d5d401ba530..6ee0ae07612 100644 --- a/packages/icons-editor/src/icons.ts +++ b/packages/icons-editor/src/icons.ts @@ -54,6 +54,7 @@ export { DirectionUpIcon } from './icons/DirectionUp.js'; export { DisplayIcon } from './icons/Display.js'; export { DoneIcon } from './icons/Done.js'; export { DragHandleIcon } from './icons/DragHandle.js'; +export { EarthIcon } from './icons/Earth.js'; export { EaseincubicIcon } from './icons/Easeincubic.js'; export { EaseinoutcubicIcon } from './icons/Easeinoutcubic.js'; export { EaseinquadIcon } from './icons/Easeinquad.js'; @@ -73,6 +74,9 @@ export { FileFolderIcon } from './icons/FileFolder.js'; export { FileOutlineIcon } from './icons/FileOutline.js'; export { FixedIcon } from './icons/Fixed.js'; export { FocusIcon } from './icons/Focus.js'; +export { FormatAlignBottomIcon } from './icons/FormatAlignBottom.js'; +export { FormatAlignMediumIcon } from './icons/FormatAlignMedium.js'; +export { FormatAlignTopIcon } from './icons/FormatAlignTop.js'; export { FormatCenterIcon } from './icons/FormatCenter.js'; export { FormatIndentDecreaseIcon } from './icons/FormatIndentDecrease.js'; export { FormatIndentIncreaseIcon } from './icons/FormatIndentIncrease.js'; diff --git a/packages/icons-editor/src/icons/ArrowTriangle.ts b/packages/icons-editor/src/icons/ArrowTriangle.ts index a7b5c7a05b3..8dd2241302f 100644 --- a/packages/icons-editor/src/icons/ArrowTriangle.ts +++ b/packages/icons-editor/src/icons/ArrowTriangle.ts @@ -21,7 +21,14 @@ export const ArrowTriangleIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - + + + + + + + + `; }; diff --git a/packages/icons-editor/src/icons/Close.ts b/packages/icons-editor/src/icons/Close.ts index def97151c62..e9135c2c0bc 100644 --- a/packages/icons-editor/src/icons/Close.ts +++ b/packages/icons-editor/src/icons/Close.ts @@ -24,7 +24,7 @@ export const CloseIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/CloseFull.ts b/packages/icons-editor/src/icons/CloseFull.ts index ad87d56bab1..37d417eb811 100644 --- a/packages/icons-editor/src/icons/CloseFull.ts +++ b/packages/icons-editor/src/icons/CloseFull.ts @@ -21,11 +21,18 @@ export const CloseFullIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - + + + + + + + + `; }; diff --git a/packages/icons-editor/src/icons/Colorpicker.ts b/packages/icons-editor/src/icons/Colorpicker.ts index 573359185cb..6e162b9381d 100644 --- a/packages/icons-editor/src/icons/Colorpicker.ts +++ b/packages/icons-editor/src/icons/Colorpicker.ts @@ -24,7 +24,7 @@ export const ColorpickerIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/Crop.ts b/packages/icons-editor/src/icons/Crop.ts index c4824ec480f..f62b8057880 100644 --- a/packages/icons-editor/src/icons/Crop.ts +++ b/packages/icons-editor/src/icons/Crop.ts @@ -22,19 +22,15 @@ export const CropIcon = (): string | TemplateResult => { xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/DataBarchart.ts b/packages/icons-editor/src/icons/DataBarchart.ts index 37b1d527ae9..b9cece48ab8 100644 --- a/packages/icons-editor/src/icons/DataBarchart.ts +++ b/packages/icons-editor/src/icons/DataBarchart.ts @@ -24,7 +24,7 @@ export const DataBarchartIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/Display.ts b/packages/icons-editor/src/icons/Display.ts index daa40cc9a44..642e49826d5 100644 --- a/packages/icons-editor/src/icons/Display.ts +++ b/packages/icons-editor/src/icons/Display.ts @@ -21,7 +21,14 @@ export const DisplayIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - + + + + + + + + `; }; diff --git a/packages/icons-editor/src/icons/Done.ts b/packages/icons-editor/src/icons/Done.ts index f19903f6e64..62b4273071c 100644 --- a/packages/icons-editor/src/icons/Done.ts +++ b/packages/icons-editor/src/icons/Done.ts @@ -24,7 +24,7 @@ export const DoneIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/DragHandle.ts b/packages/icons-editor/src/icons/DragHandle.ts index 432a8f76c80..bac1284a810 100644 --- a/packages/icons-editor/src/icons/DragHandle.ts +++ b/packages/icons-editor/src/icons/DragHandle.ts @@ -21,11 +21,18 @@ export const DragHandleIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - + + + + + + + + `; }; diff --git a/packages/icons-editor/src/icons/Earth.ts b/packages/icons-editor/src/icons/Earth.ts new file mode 100644 index 00000000000..49acc23047f --- /dev/null +++ b/packages/icons-editor/src/icons/Earth.ts @@ -0,0 +1,31 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { tag as html, TemplateResult } from '../custom-tag.js'; +export { setCustomTemplateLiteralTag } from '../custom-tag.js'; +export const EarthIcon = (): string | TemplateResult => { + return html` + + + + `; +}; diff --git a/packages/icons-editor/src/icons/Easeoutback.ts b/packages/icons-editor/src/icons/Easeoutback.ts index d9f04fbb4d7..e435bcda56d 100644 --- a/packages/icons-editor/src/icons/Easeoutback.ts +++ b/packages/icons-editor/src/icons/Easeoutback.ts @@ -24,7 +24,7 @@ export const EaseoutbackIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/Easeoutelastic.ts b/packages/icons-editor/src/icons/Easeoutelastic.ts index 1dcf7811f31..a8ec6d22945 100644 --- a/packages/icons-editor/src/icons/Easeoutelastic.ts +++ b/packages/icons-editor/src/icons/Easeoutelastic.ts @@ -24,7 +24,7 @@ export const EaseoutelasticIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/Easeoutquad.ts b/packages/icons-editor/src/icons/Easeoutquad.ts index 62fc229750a..81c7804c535 100644 --- a/packages/icons-editor/src/icons/Easeoutquad.ts +++ b/packages/icons-editor/src/icons/Easeoutquad.ts @@ -24,7 +24,7 @@ export const EaseoutquadIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/Eye.ts b/packages/icons-editor/src/icons/Eye.ts index 7e1099e3623..329b5688829 100644 --- a/packages/icons-editor/src/icons/Eye.ts +++ b/packages/icons-editor/src/icons/Eye.ts @@ -21,11 +21,69 @@ export const EyeIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > + + + + + + + + + + + + + + + + + `; }; diff --git a/packages/icons-editor/src/icons/EyeOff.ts b/packages/icons-editor/src/icons/EyeOff.ts index 162d5b34501..ef78026efaa 100644 --- a/packages/icons-editor/src/icons/EyeOff.ts +++ b/packages/icons-editor/src/icons/EyeOff.ts @@ -24,7 +24,7 @@ export const EyeOffIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/Focus.ts b/packages/icons-editor/src/icons/Focus.ts index 81d6377c880..aba999cf38e 100644 --- a/packages/icons-editor/src/icons/Focus.ts +++ b/packages/icons-editor/src/icons/Focus.ts @@ -24,7 +24,7 @@ export const FocusIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/FormatAlignBottom.ts b/packages/icons-editor/src/icons/FormatAlignBottom.ts new file mode 100644 index 00000000000..16c9152dfd8 --- /dev/null +++ b/packages/icons-editor/src/icons/FormatAlignBottom.ts @@ -0,0 +1,31 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { tag as html, TemplateResult } from '../custom-tag.js'; +export { setCustomTemplateLiteralTag } from '../custom-tag.js'; +export const FormatAlignBottomIcon = (): string | TemplateResult => { + return html` + + + + `; +}; diff --git a/packages/icons-editor/src/icons/FormatAlignMedium.ts b/packages/icons-editor/src/icons/FormatAlignMedium.ts new file mode 100644 index 00000000000..958988ababa --- /dev/null +++ b/packages/icons-editor/src/icons/FormatAlignMedium.ts @@ -0,0 +1,31 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { tag as html, TemplateResult } from '../custom-tag.js'; +export { setCustomTemplateLiteralTag } from '../custom-tag.js'; +export const FormatAlignMediumIcon = (): string | TemplateResult => { + return html` + + + + `; +}; diff --git a/packages/icons-editor/src/icons/FormatAlignTop.ts b/packages/icons-editor/src/icons/FormatAlignTop.ts new file mode 100644 index 00000000000..15deeeb04d6 --- /dev/null +++ b/packages/icons-editor/src/icons/FormatAlignTop.ts @@ -0,0 +1,31 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { tag as html, TemplateResult } from '../custom-tag.js'; +export { setCustomTemplateLiteralTag } from '../custom-tag.js'; +export const FormatAlignTopIcon = (): string | TemplateResult => { + return html` + + + + `; +}; diff --git a/packages/icons-editor/src/icons/FormatIndentDecrease.ts b/packages/icons-editor/src/icons/FormatIndentDecrease.ts index a26ee4c170d..9ec329a5d43 100644 --- a/packages/icons-editor/src/icons/FormatIndentDecrease.ts +++ b/packages/icons-editor/src/icons/FormatIndentDecrease.ts @@ -24,7 +24,7 @@ export const FormatIndentDecreaseIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/FormatIndentIncrease.ts b/packages/icons-editor/src/icons/FormatIndentIncrease.ts index 8a35a0d695c..e25507b5f33 100644 --- a/packages/icons-editor/src/icons/FormatIndentIncrease.ts +++ b/packages/icons-editor/src/icons/FormatIndentIncrease.ts @@ -21,11 +21,18 @@ export const FormatIndentIncreaseIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - + + + + + + + + `; }; diff --git a/packages/icons-editor/src/icons/Global.ts b/packages/icons-editor/src/icons/Global.ts index 97746faff85..3c56290260f 100644 --- a/packages/icons-editor/src/icons/Global.ts +++ b/packages/icons-editor/src/icons/Global.ts @@ -21,6 +21,12 @@ export const GlobalIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > + { `; diff --git a/packages/icons-editor/src/icons/HeightHug.ts b/packages/icons-editor/src/icons/HeightHug.ts index 4965f7534f2..a8e7f41d263 100644 --- a/packages/icons-editor/src/icons/HeightHug.ts +++ b/packages/icons-editor/src/icons/HeightHug.ts @@ -24,7 +24,7 @@ export const HeightHugIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/Home.ts b/packages/icons-editor/src/icons/Home.ts index fe01e220924..e2a58a8aebf 100644 --- a/packages/icons-editor/src/icons/Home.ts +++ b/packages/icons-editor/src/icons/Home.ts @@ -24,7 +24,7 @@ export const HomeIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/Import.ts b/packages/icons-editor/src/icons/Import.ts index 37f20aaee72..cbcae238b87 100644 --- a/packages/icons-editor/src/icons/Import.ts +++ b/packages/icons-editor/src/icons/Import.ts @@ -24,7 +24,7 @@ export const ImportIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/LabelC.ts b/packages/icons-editor/src/icons/LabelC.ts index 0e416cea450..991ce332436 100644 --- a/packages/icons-editor/src/icons/LabelC.ts +++ b/packages/icons-editor/src/icons/LabelC.ts @@ -22,7 +22,7 @@ export const LabelCIcon = (): string | TemplateResult => { xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelD.ts b/packages/icons-editor/src/icons/LabelD.ts index 638a42749dc..93541fbfc23 100644 --- a/packages/icons-editor/src/icons/LabelD.ts +++ b/packages/icons-editor/src/icons/LabelD.ts @@ -22,7 +22,7 @@ export const LabelDIcon = (): string | TemplateResult => { xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelG.ts b/packages/icons-editor/src/icons/LabelG.ts index 104612d5bf8..0c92aa8c877 100644 --- a/packages/icons-editor/src/icons/LabelG.ts +++ b/packages/icons-editor/src/icons/LabelG.ts @@ -22,7 +22,7 @@ export const LabelGIcon = (): string | TemplateResult => { xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelV.ts b/packages/icons-editor/src/icons/LabelV.ts index c1d1d642196..bd83c207e57 100644 --- a/packages/icons-editor/src/icons/LabelV.ts +++ b/packages/icons-editor/src/icons/LabelV.ts @@ -22,7 +22,7 @@ export const LabelVIcon = (): string | TemplateResult => { xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelX.ts b/packages/icons-editor/src/icons/LabelX.ts index 721c8f79584..ae7a8ba12bb 100644 --- a/packages/icons-editor/src/icons/LabelX.ts +++ b/packages/icons-editor/src/icons/LabelX.ts @@ -22,7 +22,7 @@ export const LabelXIcon = (): string | TemplateResult => { xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelY.ts b/packages/icons-editor/src/icons/LabelY.ts index 9ea766eb1c2..b8d9f1c10ee 100644 --- a/packages/icons-editor/src/icons/LabelY.ts +++ b/packages/icons-editor/src/icons/LabelY.ts @@ -22,7 +22,7 @@ export const LabelYIcon = (): string | TemplateResult => { xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelZ.ts b/packages/icons-editor/src/icons/LabelZ.ts index b851de70561..07c1c2ca1e2 100644 --- a/packages/icons-editor/src/icons/LabelZ.ts +++ b/packages/icons-editor/src/icons/LabelZ.ts @@ -22,7 +22,7 @@ export const LabelZIcon = (): string | TemplateResult => { xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Layers.ts b/packages/icons-editor/src/icons/Layers.ts index 307f1afe57c..49c1e950e47 100644 --- a/packages/icons-editor/src/icons/Layers.ts +++ b/packages/icons-editor/src/icons/Layers.ts @@ -24,7 +24,7 @@ export const LayersIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/Linear.ts b/packages/icons-editor/src/icons/Linear.ts index 15ee4cdcf0e..6fa3e54a3be 100644 --- a/packages/icons-editor/src/icons/Linear.ts +++ b/packages/icons-editor/src/icons/Linear.ts @@ -24,7 +24,7 @@ export const LinearIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/Link.ts b/packages/icons-editor/src/icons/Link.ts index 98f3117c5d9..008fff8a27e 100644 --- a/packages/icons-editor/src/icons/Link.ts +++ b/packages/icons-editor/src/icons/Link.ts @@ -24,7 +24,7 @@ export const LinkIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/Loading.ts b/packages/icons-editor/src/icons/Loading.ts index 15270081100..6c49d78be2a 100644 --- a/packages/icons-editor/src/icons/Loading.ts +++ b/packages/icons-editor/src/icons/Loading.ts @@ -21,11 +21,13 @@ export const LoadingIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - + + + { + + + `; diff --git a/packages/icons-editor/src/icons/LoadingWhite.ts b/packages/icons-editor/src/icons/LoadingWhite.ts index 3270824f845..8824567b1bc 100644 --- a/packages/icons-editor/src/icons/LoadingWhite.ts +++ b/packages/icons-editor/src/icons/LoadingWhite.ts @@ -21,11 +21,13 @@ export const LoadingWhiteIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - + + + { + + + `; diff --git a/packages/icons-editor/src/icons/Materiel.ts b/packages/icons-editor/src/icons/Materiel.ts index ca05a470ce3..e31913b29b2 100644 --- a/packages/icons-editor/src/icons/Materiel.ts +++ b/packages/icons-editor/src/icons/Materiel.ts @@ -21,11 +21,18 @@ export const MaterielIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - + + + + + + + + `; }; diff --git a/packages/icons-editor/src/icons/Menu.ts b/packages/icons-editor/src/icons/Menu.ts index 984945194c2..22af17814aa 100644 --- a/packages/icons-editor/src/icons/Menu.ts +++ b/packages/icons-editor/src/icons/Menu.ts @@ -21,11 +21,74 @@ export const MenuIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - + + + + + + + + + + + + + + + + + + + + + + + `; }; diff --git a/packages/icons-editor/src/icons/MoreHoriz.ts b/packages/icons-editor/src/icons/MoreHoriz.ts index e01238a0174..260fea46548 100644 --- a/packages/icons-editor/src/icons/MoreHoriz.ts +++ b/packages/icons-editor/src/icons/MoreHoriz.ts @@ -21,11 +21,18 @@ export const MoreHorizIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - + + + + + + + + `; }; diff --git a/packages/icons-editor/src/icons/OpenFull.ts b/packages/icons-editor/src/icons/OpenFull.ts index fc00aa240d0..3ccd40ce53a 100644 --- a/packages/icons-editor/src/icons/OpenFull.ts +++ b/packages/icons-editor/src/icons/OpenFull.ts @@ -25,7 +25,7 @@ export const OpenFullIcon = (): string | TemplateResult => { diff --git a/packages/icons-editor/src/icons/RadioButtonUnchecked.ts b/packages/icons-editor/src/icons/RadioButtonUnchecked.ts index 5a796a202e1..2fab78f75ff 100644 --- a/packages/icons-editor/src/icons/RadioButtonUnchecked.ts +++ b/packages/icons-editor/src/icons/RadioButtonUnchecked.ts @@ -21,11 +21,22 @@ export const RadioButtonUncheckedIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - + + + + + + + + `; }; diff --git a/packages/icons-editor/src/icons/Remove.ts b/packages/icons-editor/src/icons/Remove.ts index f315e4f5c8c..3bc86c65aa7 100644 --- a/packages/icons-editor/src/icons/Remove.ts +++ b/packages/icons-editor/src/icons/Remove.ts @@ -21,11 +21,18 @@ export const RemoveIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - + + + + + + + + `; }; diff --git a/packages/icons-editor/src/icons/RotateLeft.ts b/packages/icons-editor/src/icons/RotateLeft.ts index 2cd064caa95..f2a9ec5dce2 100644 --- a/packages/icons-editor/src/icons/RotateLeft.ts +++ b/packages/icons-editor/src/icons/RotateLeft.ts @@ -24,7 +24,7 @@ export const RotateLeftIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/Section.ts b/packages/icons-editor/src/icons/Section.ts index d452655727a..d39d7cbacb4 100644 --- a/packages/icons-editor/src/icons/Section.ts +++ b/packages/icons-editor/src/icons/Section.ts @@ -21,11 +21,18 @@ export const SectionIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - + + + + + + + + `; }; diff --git a/packages/icons-editor/src/icons/Star.ts b/packages/icons-editor/src/icons/Star.ts index 01e34cad2e0..5c9c54dfde6 100644 --- a/packages/icons-editor/src/icons/Star.ts +++ b/packages/icons-editor/src/icons/Star.ts @@ -24,7 +24,7 @@ export const StarIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/StopCircle.ts b/packages/icons-editor/src/icons/StopCircle.ts index ee1ab3ddcdf..6168f7b5e08 100644 --- a/packages/icons-editor/src/icons/StopCircle.ts +++ b/packages/icons-editor/src/icons/StopCircle.ts @@ -24,7 +24,7 @@ export const StopCircleIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/Theme.ts b/packages/icons-editor/src/icons/Theme.ts index c0e7a55ae1d..60ef8a77d82 100644 --- a/packages/icons-editor/src/icons/Theme.ts +++ b/packages/icons-editor/src/icons/Theme.ts @@ -24,12 +24,12 @@ export const ThemeIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/Trigger.ts b/packages/icons-editor/src/icons/Trigger.ts index d9d3c5b1f4c..69dc1bd0d61 100644 --- a/packages/icons-editor/src/icons/Trigger.ts +++ b/packages/icons-editor/src/icons/Trigger.ts @@ -21,7 +21,14 @@ export const TriggerIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - + + + + + + + + `; }; diff --git a/packages/icons-editor/src/icons/Unit.ts b/packages/icons-editor/src/icons/Unit.ts index 958704fab26..c0ca38b9256 100644 --- a/packages/icons-editor/src/icons/Unit.ts +++ b/packages/icons-editor/src/icons/Unit.ts @@ -22,10 +22,10 @@ export const UnitIcon = (): string | TemplateResult => { xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Unlocked.ts b/packages/icons-editor/src/icons/Unlocked.ts index 9634de675d5..d09bd22086a 100644 --- a/packages/icons-editor/src/icons/Unlocked.ts +++ b/packages/icons-editor/src/icons/Unlocked.ts @@ -21,11 +21,69 @@ export const UnlockedIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > + + + + + + + + + + + + + + + + + `; }; diff --git a/packages/icons-editor/src/icons/WidthFill.ts b/packages/icons-editor/src/icons/WidthFill.ts index 564594bac89..570e25aa7ad 100644 --- a/packages/icons-editor/src/icons/WidthFill.ts +++ b/packages/icons-editor/src/icons/WidthFill.ts @@ -24,7 +24,7 @@ export const WidthFillIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/icons/WidthHug.ts b/packages/icons-editor/src/icons/WidthHug.ts index 0bd24944bd9..fdf476437cf 100644 --- a/packages/icons-editor/src/icons/WidthHug.ts +++ b/packages/icons-editor/src/icons/WidthHug.ts @@ -24,7 +24,7 @@ export const WidthHugIcon = (): string | TemplateResult => { `; diff --git a/packages/icons-editor/src/svg/ArrowTriangle.svg b/packages/icons-editor/src/svg/ArrowTriangle.svg index 4b86ee08f9c..5542fc5df9f 100644 --- a/packages/icons-editor/src/svg/ArrowTriangle.svg +++ b/packages/icons-editor/src/svg/ArrowTriangle.svg @@ -1,3 +1,10 @@ + + + + + + + diff --git a/packages/icons-editor/src/svg/CloseFull.svg b/packages/icons-editor/src/svg/CloseFull.svg index 26105dfc70a..a066d9a6831 100644 --- a/packages/icons-editor/src/svg/CloseFull.svg +++ b/packages/icons-editor/src/svg/CloseFull.svg @@ -1,3 +1,10 @@ - + + + + + + + + diff --git a/packages/icons-editor/src/svg/Colorpicker.svg b/packages/icons-editor/src/svg/Colorpicker.svg index dd675e75c3b..7d5b8da8667 100644 --- a/packages/icons-editor/src/svg/Colorpicker.svg +++ b/packages/icons-editor/src/svg/Colorpicker.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/Crop.svg b/packages/icons-editor/src/svg/Crop.svg index 4f959181400..d64bad1e21f 100644 --- a/packages/icons-editor/src/svg/Crop.svg +++ b/packages/icons-editor/src/svg/Crop.svg @@ -1,5 +1,5 @@ - - - + + + diff --git a/packages/icons-editor/src/svg/DataBarchart.svg b/packages/icons-editor/src/svg/DataBarchart.svg index ad670671f3b..825a1c86fe5 100644 --- a/packages/icons-editor/src/svg/DataBarchart.svg +++ b/packages/icons-editor/src/svg/DataBarchart.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/Display.svg b/packages/icons-editor/src/svg/Display.svg index a8aa4958aa6..4dcb5efea51 100644 --- a/packages/icons-editor/src/svg/Display.svg +++ b/packages/icons-editor/src/svg/Display.svg @@ -1,3 +1,10 @@ + + + + + + + diff --git a/packages/icons-editor/src/svg/Done.svg b/packages/icons-editor/src/svg/Done.svg index 31e4b3698cd..48cbf155cc2 100644 --- a/packages/icons-editor/src/svg/Done.svg +++ b/packages/icons-editor/src/svg/Done.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/DragHandle.svg b/packages/icons-editor/src/svg/DragHandle.svg index b8dcd4b9831..7c95ee7088f 100644 --- a/packages/icons-editor/src/svg/DragHandle.svg +++ b/packages/icons-editor/src/svg/DragHandle.svg @@ -1,3 +1,10 @@ + + + + + + + diff --git a/packages/icons-editor/src/svg/Earth.svg b/packages/icons-editor/src/svg/Earth.svg new file mode 100644 index 00000000000..e5f027ef230 --- /dev/null +++ b/packages/icons-editor/src/svg/Earth.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/icons-editor/src/svg/Easeoutback.svg b/packages/icons-editor/src/svg/Easeoutback.svg index cc8e8c14fd3..3c9d8d53aaa 100644 --- a/packages/icons-editor/src/svg/Easeoutback.svg +++ b/packages/icons-editor/src/svg/Easeoutback.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/Easeoutelastic.svg b/packages/icons-editor/src/svg/Easeoutelastic.svg index 26736b76e74..e4984396ecc 100644 --- a/packages/icons-editor/src/svg/Easeoutelastic.svg +++ b/packages/icons-editor/src/svg/Easeoutelastic.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/Easeoutquad.svg b/packages/icons-editor/src/svg/Easeoutquad.svg index 158d4905fba..fd9d8825ff9 100644 --- a/packages/icons-editor/src/svg/Easeoutquad.svg +++ b/packages/icons-editor/src/svg/Easeoutquad.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/Eye.svg b/packages/icons-editor/src/svg/Eye.svg index 0e013ab87db..97a510ac0a6 100644 --- a/packages/icons-editor/src/svg/Eye.svg +++ b/packages/icons-editor/src/svg/Eye.svg @@ -1,3 +1,20 @@ + + + + + + + + + + + + + + + + + diff --git a/packages/icons-editor/src/svg/EyeOff.svg b/packages/icons-editor/src/svg/EyeOff.svg index b7dcb65747a..d1e89bf4541 100644 --- a/packages/icons-editor/src/svg/EyeOff.svg +++ b/packages/icons-editor/src/svg/EyeOff.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/Focus.svg b/packages/icons-editor/src/svg/Focus.svg index c2d1b168e11..c09ed5b131d 100644 --- a/packages/icons-editor/src/svg/Focus.svg +++ b/packages/icons-editor/src/svg/Focus.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/FormatAlignBottom.svg b/packages/icons-editor/src/svg/FormatAlignBottom.svg new file mode 100644 index 00000000000..122ffa8dd97 --- /dev/null +++ b/packages/icons-editor/src/svg/FormatAlignBottom.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/icons-editor/src/svg/FormatAlignMedium.svg b/packages/icons-editor/src/svg/FormatAlignMedium.svg new file mode 100644 index 00000000000..fbfb6803fb3 --- /dev/null +++ b/packages/icons-editor/src/svg/FormatAlignMedium.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/icons-editor/src/svg/FormatAlignTop.svg b/packages/icons-editor/src/svg/FormatAlignTop.svg new file mode 100644 index 00000000000..67b81f524d2 --- /dev/null +++ b/packages/icons-editor/src/svg/FormatAlignTop.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/icons-editor/src/svg/FormatIndentDecrease.svg b/packages/icons-editor/src/svg/FormatIndentDecrease.svg index f7052562420..3bf2c73b657 100644 --- a/packages/icons-editor/src/svg/FormatIndentDecrease.svg +++ b/packages/icons-editor/src/svg/FormatIndentDecrease.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/FormatIndentIncrease.svg b/packages/icons-editor/src/svg/FormatIndentIncrease.svg index fb642c4dab2..ba1c8558c03 100644 --- a/packages/icons-editor/src/svg/FormatIndentIncrease.svg +++ b/packages/icons-editor/src/svg/FormatIndentIncrease.svg @@ -1,3 +1,10 @@ - + + + + + + + + diff --git a/packages/icons-editor/src/svg/Global.svg b/packages/icons-editor/src/svg/Global.svg index f085f5bc18c..805d8e894bf 100644 --- a/packages/icons-editor/src/svg/Global.svg +++ b/packages/icons-editor/src/svg/Global.svg @@ -1,3 +1,4 @@ + diff --git a/packages/icons-editor/src/svg/HeightFill.svg b/packages/icons-editor/src/svg/HeightFill.svg index 766be4c2430..31cdc4f4953 100644 --- a/packages/icons-editor/src/svg/HeightFill.svg +++ b/packages/icons-editor/src/svg/HeightFill.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/HeightHug.svg b/packages/icons-editor/src/svg/HeightHug.svg index c55395fa762..a48d46cbc5d 100644 --- a/packages/icons-editor/src/svg/HeightHug.svg +++ b/packages/icons-editor/src/svg/HeightHug.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/Home.svg b/packages/icons-editor/src/svg/Home.svg index 8ef00c6e4f6..179b0eee580 100644 --- a/packages/icons-editor/src/svg/Home.svg +++ b/packages/icons-editor/src/svg/Home.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/Import.svg b/packages/icons-editor/src/svg/Import.svg index 6dd40a16cc1..8d20b18804e 100644 --- a/packages/icons-editor/src/svg/Import.svg +++ b/packages/icons-editor/src/svg/Import.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/LabelC.svg b/packages/icons-editor/src/svg/LabelC.svg index 6327ab85602..a5e394a03be 100644 --- a/packages/icons-editor/src/svg/LabelC.svg +++ b/packages/icons-editor/src/svg/LabelC.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/LabelD.svg b/packages/icons-editor/src/svg/LabelD.svg index b470efaff6c..1127ecb48b1 100644 --- a/packages/icons-editor/src/svg/LabelD.svg +++ b/packages/icons-editor/src/svg/LabelD.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/LabelG.svg b/packages/icons-editor/src/svg/LabelG.svg index 4b536b5b525..64030b8dfc3 100644 --- a/packages/icons-editor/src/svg/LabelG.svg +++ b/packages/icons-editor/src/svg/LabelG.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/LabelV.svg b/packages/icons-editor/src/svg/LabelV.svg index 02a94342784..2e84d1f3a6f 100644 --- a/packages/icons-editor/src/svg/LabelV.svg +++ b/packages/icons-editor/src/svg/LabelV.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/LabelX.svg b/packages/icons-editor/src/svg/LabelX.svg index 7c7a54e1604..726f8658fbc 100644 --- a/packages/icons-editor/src/svg/LabelX.svg +++ b/packages/icons-editor/src/svg/LabelX.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/LabelY.svg b/packages/icons-editor/src/svg/LabelY.svg index 46d98be4e92..2bed9aa4bb9 100644 --- a/packages/icons-editor/src/svg/LabelY.svg +++ b/packages/icons-editor/src/svg/LabelY.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/LabelZ.svg b/packages/icons-editor/src/svg/LabelZ.svg index 606f70e6fe9..98ef81c0b3f 100644 --- a/packages/icons-editor/src/svg/LabelZ.svg +++ b/packages/icons-editor/src/svg/LabelZ.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/Layers.svg b/packages/icons-editor/src/svg/Layers.svg index 24556ebecb9..810773fba3d 100644 --- a/packages/icons-editor/src/svg/Layers.svg +++ b/packages/icons-editor/src/svg/Layers.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/Linear.svg b/packages/icons-editor/src/svg/Linear.svg index 55b548bf84d..9b873680ec0 100644 --- a/packages/icons-editor/src/svg/Linear.svg +++ b/packages/icons-editor/src/svg/Linear.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/Link.svg b/packages/icons-editor/src/svg/Link.svg index 7e627e5808f..aa97c744ed8 100644 --- a/packages/icons-editor/src/svg/Link.svg +++ b/packages/icons-editor/src/svg/Link.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/Loading.svg b/packages/icons-editor/src/svg/Loading.svg index e3ab748a07c..e5c2a718526 100644 --- a/packages/icons-editor/src/svg/Loading.svg +++ b/packages/icons-editor/src/svg/Loading.svg @@ -1,9 +1,14 @@ + + + + + diff --git a/packages/icons-editor/src/svg/LoadingWhite.svg b/packages/icons-editor/src/svg/LoadingWhite.svg index 80e1e1d644c..1553155e379 100644 --- a/packages/icons-editor/src/svg/LoadingWhite.svg +++ b/packages/icons-editor/src/svg/LoadingWhite.svg @@ -1,9 +1,14 @@ + + + + + diff --git a/packages/icons-editor/src/svg/Materiel.svg b/packages/icons-editor/src/svg/Materiel.svg index 09b44097d8f..744bb0fe3c3 100644 --- a/packages/icons-editor/src/svg/Materiel.svg +++ b/packages/icons-editor/src/svg/Materiel.svg @@ -1,3 +1,10 @@ + + + + + + + diff --git a/packages/icons-editor/src/svg/Menu.svg b/packages/icons-editor/src/svg/Menu.svg index fef024be1e8..e585de359c3 100644 --- a/packages/icons-editor/src/svg/Menu.svg +++ b/packages/icons-editor/src/svg/Menu.svg @@ -1,3 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/icons-editor/src/svg/MoreHoriz.svg b/packages/icons-editor/src/svg/MoreHoriz.svg index 550255e4f38..c83457e1455 100644 --- a/packages/icons-editor/src/svg/MoreHoriz.svg +++ b/packages/icons-editor/src/svg/MoreHoriz.svg @@ -1,3 +1,10 @@ + + + + + + + diff --git a/packages/icons-editor/src/svg/OpenFull.svg b/packages/icons-editor/src/svg/OpenFull.svg index 500088a89b3..43b61d78aab 100644 --- a/packages/icons-editor/src/svg/OpenFull.svg +++ b/packages/icons-editor/src/svg/OpenFull.svg @@ -1,6 +1,6 @@ - + diff --git a/packages/icons-editor/src/svg/RadioButtonUnchecked.svg b/packages/icons-editor/src/svg/RadioButtonUnchecked.svg index ac4c0253345..2aa65098020 100644 --- a/packages/icons-editor/src/svg/RadioButtonUnchecked.svg +++ b/packages/icons-editor/src/svg/RadioButtonUnchecked.svg @@ -1,3 +1,10 @@ + + + + + + + diff --git a/packages/icons-editor/src/svg/Remove.svg b/packages/icons-editor/src/svg/Remove.svg index d7156ef1a0e..1a57b2255e4 100644 --- a/packages/icons-editor/src/svg/Remove.svg +++ b/packages/icons-editor/src/svg/Remove.svg @@ -1,3 +1,10 @@ + + + + + + + diff --git a/packages/icons-editor/src/svg/RotateLeft.svg b/packages/icons-editor/src/svg/RotateLeft.svg index ba21c50f861..4348edbe813 100644 --- a/packages/icons-editor/src/svg/RotateLeft.svg +++ b/packages/icons-editor/src/svg/RotateLeft.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/Section.svg b/packages/icons-editor/src/svg/Section.svg index 4111cf0426a..1d88709c7ec 100644 --- a/packages/icons-editor/src/svg/Section.svg +++ b/packages/icons-editor/src/svg/Section.svg @@ -1,3 +1,10 @@ + + + + + + + diff --git a/packages/icons-editor/src/svg/Star.svg b/packages/icons-editor/src/svg/Star.svg index 330a25d8ecb..eed3530bee2 100644 --- a/packages/icons-editor/src/svg/Star.svg +++ b/packages/icons-editor/src/svg/Star.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/StopCircle.svg b/packages/icons-editor/src/svg/StopCircle.svg index 1d4b273ac6c..cf3723ec25f 100644 --- a/packages/icons-editor/src/svg/StopCircle.svg +++ b/packages/icons-editor/src/svg/StopCircle.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/Theme.svg b/packages/icons-editor/src/svg/Theme.svg index 7d12d210704..89b0b9dbba6 100644 --- a/packages/icons-editor/src/svg/Theme.svg +++ b/packages/icons-editor/src/svg/Theme.svg @@ -1,4 +1,4 @@ - - + + diff --git a/packages/icons-editor/src/svg/Trigger.svg b/packages/icons-editor/src/svg/Trigger.svg index 1d5c9872981..4c718946328 100644 --- a/packages/icons-editor/src/svg/Trigger.svg +++ b/packages/icons-editor/src/svg/Trigger.svg @@ -1,3 +1,10 @@ + + + + + + + diff --git a/packages/icons-editor/src/svg/Unit.svg b/packages/icons-editor/src/svg/Unit.svg index 474cefc2105..db9a7bcaace 100644 --- a/packages/icons-editor/src/svg/Unit.svg +++ b/packages/icons-editor/src/svg/Unit.svg @@ -1,4 +1,4 @@ - - + + diff --git a/packages/icons-editor/src/svg/Unlocked.svg b/packages/icons-editor/src/svg/Unlocked.svg index e292d509613..3ad030cf5f3 100644 --- a/packages/icons-editor/src/svg/Unlocked.svg +++ b/packages/icons-editor/src/svg/Unlocked.svg @@ -1,3 +1,20 @@ + + + + + + + + + + + + + + + + + diff --git a/packages/icons-editor/src/svg/WidthFill.svg b/packages/icons-editor/src/svg/WidthFill.svg index 535e96945f3..9b760474ce1 100644 --- a/packages/icons-editor/src/svg/WidthFill.svg +++ b/packages/icons-editor/src/svg/WidthFill.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/WidthHug.svg b/packages/icons-editor/src/svg/WidthHug.svg index 2da7ddfe40d..ce0ec84245c 100644 --- a/packages/icons-editor/src/svg/WidthHug.svg +++ b/packages/icons-editor/src/svg/WidthHug.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons-editor/src/svg/close.svg b/packages/icons-editor/src/svg/close.svg index c91a58843a2..adc535ab8ee 100644 --- a/packages/icons-editor/src/svg/close.svg +++ b/packages/icons-editor/src/svg/close.svg @@ -1,3 +1,3 @@ - + diff --git a/packages/icons/src/icons-editor.svg.ts b/packages/icons/src/icons-editor.svg.ts index eea5462d549..52b064aabe6 100644 --- a/packages/icons/src/icons-editor.svg.ts +++ b/packages/icons/src/icons-editor.svg.ts @@ -11,4 +11,4 @@ OF ANY KIND, either express or implied. See the License for the specific languag governing permissions and limitations under the License. */ import { svg } from '@iliad-ui/base'; -export default svg``; +export default svg``; diff --git a/packages/react/src/index.ts b/packages/react/src/index.ts index 51e0020c3a2..6a23949e86d 100644 --- a/packages/react/src/index.ts +++ b/packages/react/src/index.ts @@ -14,26 +14,26 @@ governing permissions and limitations under the License. import '@iliad-ui/bundle/elements'; /* 脚本自动生成 */ +export * from './ActionBar'; export * from './Accordion'; export * from './AccordionItem'; -export * from './ActionBar'; export * from './ActionButton'; -export * from './ActionMenu'; export * from './ActionGroup'; +export * from './ActionMenu'; export * from './Asset'; export * from './Avatar'; export * from './Banner'; export * from './Breadcrumb'; +export * from './ButtonGroup'; export * from './Button'; export * from './ClearButton'; -export * from './ButtonGroup'; export * from './Card'; export * from './Checkbox'; export * from './Coachmark'; export * from './ColorArea'; export * from './ColorHandle'; -export * from './ColorLoupe'; export * from './ColorSlider'; +export * from './ColorLoupe'; export * from './ColorWheel'; export * from './Dialog'; export * from './DialogWrapper'; @@ -43,19 +43,19 @@ export * from './FieldGroup'; export * from './FieldLabel'; export * from './Icon'; export * from './IllustratedMessage'; -export * from './Meter'; export * from './Link'; -export * from './NumberField'; +export * from './Meter'; export * from './Menu'; export * from './MenuDivider'; export * from './MenuGroup'; export * from './MenuItem'; +export * from './NumberField'; +export * from './ActiveOverlay'; +export * from './OverlayTrigger'; export * from './PickerBase'; export * from './Panel'; export * from './Popover'; export * from './ProgressBar'; -export * from './ActiveOverlay'; -export * from './OverlayTrigger'; export * from './ProgressCircle'; export * from './QuickActions'; export * from './Radio'; @@ -72,18 +72,18 @@ export * from './Switch'; export * from './Tab'; export * from './TabPanel'; export * from './Tabs'; -export * from './Textfield'; export * from './Tag'; export * from './Tags'; +export * from './Textfield'; export * from './Theme'; export * from './Thumbnail'; -export * from './Toast'; export * from './Tooltip'; +export * from './Toast'; export * from './TopNav'; export * from './TopNavItem'; export * from './Tray'; -export * from './TreeItem'; export * from './Underlay'; +export * from './TreeItem'; /** 手动添加 */ export * from './Picker'; diff --git a/scripts/build-react.js b/scripts/build-react.js index f5333235235..770c99b3735 100644 --- a/scripts/build-react.js +++ b/scripts/build-react.js @@ -74,6 +74,11 @@ function formatCode(string) { return prettier.format(string, { parser: 'babel-ts', singleQuote: true, + printWidth: 80, + tabWidth: 4, + semi: true, + singleQuote: true, + bracketSpacing: true, }); } @@ -83,21 +88,27 @@ const AppendEvents = { Slider: ['input', 'change'], }; -components.map((component) => { - const { name } = component; - const componentFile = path.join('./src', `${name}.ts`); - const appendEvents = (AppendEvents[name] || []).map((cv) => { - return { name: cv }; - }); - const events = (component.events || []) - .concat(appendEvents) - .map((event) => { - return `'${event.name}': '${event.name}'`; - }) - .join(',\n'); - - const source = formatCode( - `${header}import * as React from 'react'; +// 暂时还没开发完毕 +const passedComponents = ['HelpText']; +components + .filter((cv) => { + return !passedComponents.includes(cv.name); + }) + .map((component) => { + const { name } = component; + const componentFile = path.join('./src', `${name}.ts`); + const appendEvents = (AppendEvents[name] || []).map((cv) => { + return { name: cv }; + }); + const events = (component.events || []) + .concat(appendEvents) + .map((event) => { + return `'${event.name}': '${event.name}'`; + }) + .join(',\n'); + + const source = formatCode( + `${header}import * as React from 'react'; import { createComponent } from '@lit-labs/react'; import { ReactiveEvents } from '../config'; import { ${name} as Component } from '@iliad-ui/bundle'; @@ -113,12 +124,12 @@ components.map((component) => { '${name}' ); ` - ); + ); - fs.writeFileSync(componentFile, source, 'utf8'); - mainExports.push(`export * from './${name}'`); - console.log(`✓ <${component.tagName}>`); -}); + fs.writeFileSync(componentFile, source, 'utf8'); + mainExports.push(`export * from './${name}'`); + console.log(`✓ <${component.tagName}>`); + }); // 增加手动导出部分(build:react 不会更新对应src/ts文件,有更新需要手动更新) mainExports.push(` From 4689c225ae9f3c23e0cac18730c5e6248a888ff3 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Tue, 6 Sep 2022 16:35:34 +0800 Subject: [PATCH 06/28] chore: release new versions - @iliad-ui/action-bar@0.7.3 - @iliad-ui/action-menu@0.16.3 - @iliad-ui/bundle@0.27.3 - @iliad-ui/icons-editor@0.10.0 - @iliad-ui/icons@0.21.0 - @iliad-ui/picker@0.14.3 - @iliad-ui/popover@0.16.3 - @iliad-ui/react@0.20.0 - @iliad-ui/split-button@0.10.3 - documentation@0.1.34 - example-project-rollup@0.5.3 - example-project-webpack@1.6.3 - @iliad-ui/story-decorator@0.10.3 - @iliad-ui/vrt-compare@0.7.3 --- packages/action-bar/CHANGELOG.md | 4 ++++ packages/action-bar/package.json | 4 ++-- packages/action-menu/CHANGELOG.md | 4 ++++ packages/action-menu/package.json | 4 ++-- packages/bundle/CHANGELOG.md | 4 ++++ packages/bundle/package.json | 16 ++++++++-------- packages/icons-editor/CHANGELOG.md | 6 ++++++ packages/icons-editor/package.json | 2 +- packages/icons/CHANGELOG.md | 6 ++++++ packages/icons/package.json | 2 +- packages/picker/CHANGELOG.md | 4 ++++ packages/picker/package.json | 4 ++-- packages/popover/CHANGELOG.md | 4 ++++ packages/popover/package.json | 4 ++-- packages/react/CHANGELOG.md | 6 ++++++ packages/react/package.json | 6 +++--- packages/split-button/CHANGELOG.md | 4 ++++ packages/split-button/package.json | 4 ++-- projects/documentation/CHANGELOG.md | 4 ++++ projects/documentation/package.json | 4 ++-- projects/example-project-rollup/CHANGELOG.md | 4 ++++ projects/example-project-rollup/package.json | 10 +++++----- projects/example-project-webpack/CHANGELOG.md | 4 ++++ projects/example-project-webpack/package.json | 6 +++--- projects/story-decorator/CHANGELOG.md | 4 ++++ projects/story-decorator/package.json | 4 ++-- projects/vrt-compare/CHANGELOG.md | 4 ++++ projects/vrt-compare/package.json | 4 ++-- 28 files changed, 99 insertions(+), 37 deletions(-) diff --git a/packages/action-bar/CHANGELOG.md b/packages/action-bar/CHANGELOG.md index 48c2e078932..fb063df2a57 100644 --- a/packages/action-bar/CHANGELOG.md +++ b/packages/action-bar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.7.2...@iliad-ui/action-bar@0.7.3) (2022-09-06) + +**Note:** Version bump only for package @iliad-ui/action-bar + ## [0.7.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.6.29...@iliad-ui/action-bar@0.7.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/action-bar diff --git a/packages/action-bar/package.json b/packages/action-bar/package.json index 540a0fb9026..82180912f41 100644 --- a/packages/action-bar/package.json +++ b/packages/action-bar/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-bar", - "version": "0.7.2", + "version": "0.7.3", "publishConfig": { "access": "public" }, @@ -45,7 +45,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/popover": "^0.16.2", + "@iliad-ui/popover": "^0.16.3", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/action-menu/CHANGELOG.md b/packages/action-menu/CHANGELOG.md index 651e9fa915a..31496e98dcc 100644 --- a/packages/action-menu/CHANGELOG.md +++ b/packages/action-menu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.16.2...@iliad-ui/action-menu@0.16.3) (2022-09-06) + +**Note:** Version bump only for package @iliad-ui/action-menu + ## [0.16.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.15.31...@iliad-ui/action-menu@0.16.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/action-menu diff --git a/packages/action-menu/package.json b/packages/action-menu/package.json index 5dffe73f05e..056527e8445 100644 --- a/packages/action-menu/package.json +++ b/packages/action-menu/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-menu", - "version": "0.16.2", + "version": "0.16.3", "publishConfig": { "access": "public" }, @@ -51,7 +51,7 @@ "@iliad-ui/icon": "^0.17.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/menu": "^0.17.2", - "@iliad-ui/picker": "^0.14.2", + "@iliad-ui/picker": "^0.14.3", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/bundle/CHANGELOG.md b/packages/bundle/CHANGELOG.md index 2551a686318..c3a71b6a9a0 100644 --- a/packages/bundle/CHANGELOG.md +++ b/packages/bundle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.27.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.2...@iliad-ui/bundle@0.27.3) (2022-09-06) + +**Note:** Version bump only for package @iliad-ui/bundle + ## [0.27.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.26.41...@iliad-ui/bundle@0.27.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/bundle diff --git a/packages/bundle/package.json b/packages/bundle/package.json index 7e5e5fc6be9..72b4e58cfef 100644 --- a/packages/bundle/package.json +++ b/packages/bundle/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/bundle", - "version": "0.27.2", + "version": "0.27.3", "publishConfig": { "access": "public" }, @@ -47,10 +47,10 @@ ], "dependencies": { "@iliad-ui/accordion": "^0.9.2", - "@iliad-ui/action-bar": "^0.7.2", + "@iliad-ui/action-bar": "^0.7.3", "@iliad-ui/action-button": "^0.14.2", "@iliad-ui/action-group": "^0.12.2", - "@iliad-ui/action-menu": "^0.16.2", + "@iliad-ui/action-menu": "^0.16.3", "@iliad-ui/asset": "^0.9.2", "@iliad-ui/avatar": "^0.14.2", "@iliad-ui/banner": "^0.13.2", @@ -71,8 +71,8 @@ "@iliad-ui/field-group": "^0.8.2", "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/icon": "^0.17.2", - "@iliad-ui/icons": "^0.20.2", - "@iliad-ui/icons-editor": "^0.9.2", + "@iliad-ui/icons": "^0.21.0", + "@iliad-ui/icons-editor": "^0.10.0", "@iliad-ui/icons-ui": "^0.13.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/iconset": "^0.13.2", @@ -82,8 +82,8 @@ "@iliad-ui/meter": "^0.9.2", "@iliad-ui/number-field": "^0.9.2", "@iliad-ui/overlay": "^0.18.2", - "@iliad-ui/picker": "^0.14.2", - "@iliad-ui/popover": "^0.16.2", + "@iliad-ui/picker": "^0.14.3", + "@iliad-ui/popover": "^0.16.3", "@iliad-ui/progress-bar": "^0.8.2", "@iliad-ui/progress-circle": "^0.7.2", "@iliad-ui/quick-actions": "^0.9.2", @@ -91,7 +91,7 @@ "@iliad-ui/search": "^0.13.2", "@iliad-ui/sidenav": "^0.15.2", "@iliad-ui/slider": "^0.18.2", - "@iliad-ui/split-button": "^0.10.2", + "@iliad-ui/split-button": "^0.10.3", "@iliad-ui/split-view": "^0.9.2", "@iliad-ui/status-light": "^0.13.2", "@iliad-ui/switch": "^0.12.2", diff --git a/packages/icons-editor/CHANGELOG.md b/packages/icons-editor/CHANGELOG.md index ca98d62de40..2dd6b97c961 100644 --- a/packages/icons-editor/CHANGELOG.md +++ b/packages/icons-editor/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.10.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.9.2...@iliad-ui/icons-editor@0.10.0) (2022-09-06) + +### Features + +- icons 更新 ([80d4883](https://github.com/gaoding-inc/iliad-ui/commit/80d4883e2e901d7210819afdb12a0783fab2c940)) + ## [0.9.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.9.1...@iliad-ui/icons-editor@0.9.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/icons-editor diff --git a/packages/icons-editor/package.json b/packages/icons-editor/package.json index a6a76948bf6..82dc44bedc1 100644 --- a/packages/icons-editor/package.json +++ b/packages/icons-editor/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons-editor", - "version": "0.9.2", + "version": "0.10.0", "publishConfig": { "access": "public" }, diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index bf616aa7bf8..03ac8b60660 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.21.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.20.2...@iliad-ui/icons@0.21.0) (2022-09-06) + +### Features + +- icons 更新 ([80d4883](https://github.com/gaoding-inc/iliad-ui/commit/80d4883e2e901d7210819afdb12a0783fab2c940)) + ## [0.20.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.19.1...@iliad-ui/icons@0.20.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/icons diff --git a/packages/icons/package.json b/packages/icons/package.json index 078b0cfeaf7..f6a6899cc0d 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons", - "version": "0.20.2", + "version": "0.21.0", "publishConfig": { "access": "public" }, diff --git a/packages/picker/CHANGELOG.md b/packages/picker/CHANGELOG.md index 8e567f42a14..ea5be3c6b73 100644 --- a/packages/picker/CHANGELOG.md +++ b/packages/picker/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.14.2...@iliad-ui/picker@0.14.3) (2022-09-06) + +**Note:** Version bump only for package @iliad-ui/picker + ## [0.14.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.13.31...@iliad-ui/picker@0.14.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/picker diff --git a/packages/picker/package.json b/packages/picker/package.json index 17e29f397ee..27b973dde1d 100644 --- a/packages/picker/package.json +++ b/packages/picker/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/picker", - "version": "0.14.2", + "version": "0.14.3", "publishConfig": { "access": "public" }, @@ -55,7 +55,7 @@ "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/menu": "^0.17.2", "@iliad-ui/overlay": "^0.18.2", - "@iliad-ui/popover": "^0.16.2", + "@iliad-ui/popover": "^0.16.3", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/popover/CHANGELOG.md b/packages/popover/CHANGELOG.md index b9fa3c67970..98ae42e09e2 100644 --- a/packages/popover/CHANGELOG.md +++ b/packages/popover/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.16.2...@iliad-ui/popover@0.16.3) (2022-09-06) + +**Note:** Version bump only for package @iliad-ui/popover + ## [0.16.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.15.10...@iliad-ui/popover@0.16.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/popover diff --git a/packages/popover/package.json b/packages/popover/package.json index 029bc0396fe..f1b486e79a3 100644 --- a/packages/popover/package.json +++ b/packages/popover/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/popover", - "version": "0.16.2", + "version": "0.16.3", "publishConfig": { "access": "public" }, @@ -47,7 +47,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/icons-editor": "^0.9.2", + "@iliad-ui/icons-editor": "^0.10.0", "@iliad-ui/overlay": "^0.18.2", "tslib": "^2.0.0" }, diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 6fea663258f..f64931502cc 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.20.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.19.2...@iliad-ui/react@0.20.0) (2022-09-06) + +### Features + +- icons 更新 ([80d4883](https://github.com/gaoding-inc/iliad-ui/commit/80d4883e2e901d7210819afdb12a0783fab2c940)) + ## [0.19.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.19.1...@iliad-ui/react@0.19.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/react diff --git a/packages/react/package.json b/packages/react/package.json index 711e192a943..526731606c1 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/react", - "version": "0.19.2", + "version": "0.20.0", "publishConfig": { "access": "public" }, @@ -42,8 +42,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/bundle": "^0.27.2", - "@iliad-ui/icons": "^0.20.2", + "@iliad-ui/bundle": "^0.27.3", + "@iliad-ui/icons": "^0.21.0", "@lit-labs/react": "^1.0.1", "@types/lodash": "^4.14.175", "@types/react": "^17.0.30", diff --git a/packages/split-button/CHANGELOG.md b/packages/split-button/CHANGELOG.md index 991a4af5a4a..729f702196a 100644 --- a/packages/split-button/CHANGELOG.md +++ b/packages/split-button/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.10.2...@iliad-ui/split-button@0.10.3) (2022-09-06) + +**Note:** Version bump only for package @iliad-ui/split-button + ## [0.10.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.10.1...@iliad-ui/split-button@0.10.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/split-button diff --git a/packages/split-button/package.json b/packages/split-button/package.json index e049a8453ab..9dfd4298e42 100644 --- a/packages/split-button/package.json +++ b/packages/split-button/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/split-button", - "version": "0.10.2", + "version": "0.10.3", "publishConfig": { "access": "public" }, @@ -52,7 +52,7 @@ "@iliad-ui/icons-ui": "^0.13.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/overlay": "^0.18.2", - "@iliad-ui/picker": "^0.14.2", + "@iliad-ui/picker": "^0.14.3", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/projects/documentation/CHANGELOG.md b/projects/documentation/CHANGELOG.md index f0e874da4c0..e745d806ac5 100644 --- a/projects/documentation/CHANGELOG.md +++ b/projects/documentation/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.34](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.33...documentation@0.1.34) (2022-09-06) + +**Note:** Version bump only for package documentation + ## [0.1.33](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.32...documentation@0.1.33) (2022-08-05) **Note:** Version bump only for package documentation diff --git a/projects/documentation/package.json b/projects/documentation/package.json index 5d63ccd71e7..7c501434cd1 100644 --- a/projects/documentation/package.json +++ b/projects/documentation/package.json @@ -1,6 +1,6 @@ { "name": "documentation", - "version": "0.1.33", + "version": "0.1.34", "private": true, "description": "The documentation site for Spectrum Web Components", "license": "Apache-2.0", @@ -25,7 +25,7 @@ "watch:serve": "wds --root-dir=dist --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.2", + "@iliad-ui/bundle": "^0.27.3", "@spectrum-css/table": "^4.0.5" }, "devDependencies": { diff --git a/projects/example-project-rollup/CHANGELOG.md b/projects/example-project-rollup/CHANGELOG.md index 413e330349d..3e3430e9e32 100644 --- a/projects/example-project-rollup/CHANGELOG.md +++ b/projects/example-project-rollup/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.3](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.2...example-project-rollup@0.5.3) (2022-09-06) + +**Note:** Version bump only for package example-project-rollup + ## [0.5.2](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.4.30...example-project-rollup@0.5.2) (2022-08-05) **Note:** Version bump only for package example-project-rollup diff --git a/projects/example-project-rollup/package.json b/projects/example-project-rollup/package.json index 0a76b2a059a..3590d80a102 100644 --- a/projects/example-project-rollup/package.json +++ b/projects/example-project-rollup/package.json @@ -1,6 +1,6 @@ { "name": "example-project-rollup", - "version": "0.5.2", + "version": "0.5.3", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with rollup.", "license": "Apache-2.0", @@ -20,13 +20,13 @@ "tsc:watch": "tsc --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.2", + "@iliad-ui/bundle": "^0.27.3", "@iliad-ui/button": "^0.23.2", "@iliad-ui/field-label": "^0.10.2", - "@iliad-ui/icons": "^0.20.2", - "@iliad-ui/icons-editor": "^0.9.2", + "@iliad-ui/icons": "^0.21.0", + "@iliad-ui/icons-editor": "^0.10.0", "@iliad-ui/menu": "^0.17.2", - "@iliad-ui/picker": "^0.14.2", + "@iliad-ui/picker": "^0.14.3", "@iliad-ui/styles": "^0.17.2" }, "devDependencies": { diff --git a/projects/example-project-webpack/CHANGELOG.md b/projects/example-project-webpack/CHANGELOG.md index 04aa0f303d0..7f63f1a3ecc 100644 --- a/projects/example-project-webpack/CHANGELOG.md +++ b/projects/example-project-webpack/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.6.3](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.2...example-project-webpack@1.6.3) (2022-09-06) + +**Note:** Version bump only for package example-project-webpack + ## [1.6.2](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.1...example-project-webpack@1.6.2) (2022-08-05) **Note:** Version bump only for package example-project-webpack diff --git a/projects/example-project-webpack/package.json b/projects/example-project-webpack/package.json index 2dfc9019060..42bfafa1bda 100644 --- a/projects/example-project-webpack/package.json +++ b/projects/example-project-webpack/package.json @@ -1,6 +1,6 @@ { "name": "example-project-webpack", - "version": "1.6.2", + "version": "1.6.3", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with webpack.", "license": "Apache-2.0", @@ -15,8 +15,8 @@ "@iliad-ui/button": "^0.23.2", "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/menu": "^0.17.2", - "@iliad-ui/picker": "^0.14.2", - "@iliad-ui/react": "^0.19.2", + "@iliad-ui/picker": "^0.14.3", + "@iliad-ui/react": "^0.20.0", "@iliad-ui/styles": "^0.17.2", "lit": "^2.0.0" }, diff --git a/projects/story-decorator/CHANGELOG.md b/projects/story-decorator/CHANGELOG.md index c16cc9fd90c..6b82dda19d9 100644 --- a/projects/story-decorator/CHANGELOG.md +++ b/projects/story-decorator/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.10.2...@iliad-ui/story-decorator@0.10.3) (2022-09-06) + +**Note:** Version bump only for package @iliad-ui/story-decorator + ## [0.10.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.10.1...@iliad-ui/story-decorator@0.10.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/story-decorator diff --git a/projects/story-decorator/package.json b/projects/story-decorator/package.json index 0ddd9106635..1a121ca943c 100644 --- a/projects/story-decorator/package.json +++ b/projects/story-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/story-decorator", - "version": "0.10.2", + "version": "0.10.3", "publishConfig": { "access": "public" }, @@ -49,7 +49,7 @@ "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/menu": "^0.17.2", "@iliad-ui/overlay": "^0.18.2", - "@iliad-ui/picker": "^0.14.2", + "@iliad-ui/picker": "^0.14.3", "@iliad-ui/switch": "^0.12.2", "@iliad-ui/theme": "^0.15.2", "tslib": "^2.0.0" diff --git a/projects/vrt-compare/CHANGELOG.md b/projects/vrt-compare/CHANGELOG.md index 23793edbcb9..81dfcd5dcbf 100644 --- a/projects/vrt-compare/CHANGELOG.md +++ b/projects/vrt-compare/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.7.2...@iliad-ui/vrt-compare@0.7.3) (2022-09-06) + +**Note:** Version bump only for package @iliad-ui/vrt-compare + ## [0.7.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.7.1...@iliad-ui/vrt-compare@0.7.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/vrt-compare diff --git a/projects/vrt-compare/package.json b/projects/vrt-compare/package.json index 76f19d83794..728f3e46f49 100644 --- a/projects/vrt-compare/package.json +++ b/projects/vrt-compare/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/vrt-compare", - "version": "0.7.2", + "version": "0.7.3", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-bar": "^0.7.2", + "@iliad-ui/action-bar": "^0.7.3", "@iliad-ui/action-button": "^0.14.2", "@iliad-ui/action-group": "^0.12.2", "@iliad-ui/base": "^0.12.2", From f46db89695723aaf57b9ae9975ee3f37f35413e1 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Tue, 13 Sep 2022 15:03:28 +0800 Subject: [PATCH 07/28] =?UTF-8?q?feat:=20icons=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/icons-editor/src/data.json | 356 ++++++++++---------- packages/icons-editor/src/icons/Eye.ts | 58 ---- packages/icons-editor/src/icons/Global.ts | 6 - packages/icons-editor/src/icons/Menu.ts | 73 +--- packages/icons-editor/src/icons/Unlocked.ts | 58 ---- packages/icons-editor/src/svg/Eye.svg | 17 - packages/icons-editor/src/svg/Global.svg | 1 - packages/icons-editor/src/svg/Menu.svg | 22 -- packages/icons-editor/src/svg/Unlocked.svg | 17 - packages/icons/src/icons-editor.svg.ts | 2 +- 10 files changed, 184 insertions(+), 426 deletions(-) diff --git a/packages/icons-editor/src/data.json b/packages/icons-editor/src/data.json index 2ce4f860637..ebcfcd4d41e 100644 --- a/packages/icons-editor/src/data.json +++ b/packages/icons-editor/src/data.json @@ -7,7 +7,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b19bc6ca-20e1-4f5c-80d4-80f9c8905ed5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8137d5d0-e0cb-47cb-946a-7554e871daab" }, "25:28": { "name": "label_y", @@ -17,7 +17,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f71a605b-611c-46b7-aa75-04bb4084cb0a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3a14eba2-08ae-4116-b07f-1d5cc6bd686f" }, "382:510": { "name": "label_z", @@ -27,7 +27,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ff57deda-40d3-4a44-90ed-f0696719382c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7888acc7-b178-4d15-afce-9a33836c20f1" }, "91:383": { "name": "label_d", @@ -37,7 +37,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0527f16c-c438-480d-bf61-442761758235" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8cb11f8a-a61b-4169-bdee-1793820e582e" }, "91:392": { "name": "label_v", @@ -47,7 +47,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e28eb968-5704-4ffb-bc2d-2a25cbf3fc21" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/664c35a0-e04e-4b7b-b296-4507d082429f" }, "92:328": { "name": "label_c", @@ -57,7 +57,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2f73c77e-fc17-4cc6-8dc2-9154352bbc37" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/167288fd-aa1c-450b-879a-c0a3047903ca" }, "97:478": { "name": "label_g", @@ -67,7 +67,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a1408832-8b0e-4717-87e2-9fefb6a1c783" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/16d6557c-0d8f-4c7d-b4c8-c6d183961147" }, "964:933": { "name": "unit", @@ -77,7 +77,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f35ce808-09f5-45f0-826e-a0ed1cd325e5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a6ea5115-4e35-44ac-8862-3e43616ad83f" }, "8:8": { "name": "command", @@ -87,7 +87,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/90516d9b-7fa3-4eb7-9ce4-611c2c27442b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/71efb857-55c6-43d8-869c-5936723291ed" }, "97:457": { "name": "shift", @@ -97,7 +97,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/64708e3e-07f3-4dd3-92d0-ff14d38b9821" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ccf77ffb-fda7-4759-a0ec-212b3cb9a069" }, "350:2642": { "name": "option", @@ -107,7 +107,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ae593dab-b232-4746-91a8-0cee859216c7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a018db65-23e4-45a7-8d27-2615e7930069" }, "9:30": { "name": "backspace", @@ -117,7 +117,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0960ca5a-45e6-49db-b4a1-c942e34dd2d5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d21d4530-93da-4c41-9ac6-0523d3f17a56" }, "326:546": { "name": "label_openbracket", @@ -127,7 +127,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/06c7c171-2df7-407f-a6f2-b5b4f83530b3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f9ce4f76-28b4-43de-8184-f7c580219c80" }, "326:536": { "name": "label_closebracket", @@ -137,7 +137,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/34231568-75bf-43af-afa7-83cf30a95695" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/81b69894-7d31-49ec-9273-4c31d9ef0d21" }, "0:36": { "name": "format_left", @@ -147,7 +147,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/75a88a17-296f-41fa-89bc-1b47b45c8bb6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e1343fc0-f027-494c-af86-55be16ff95fe" }, "0:38": { "name": "format_center", @@ -157,7 +157,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1794a8d8-6566-43e9-815d-af4486fec4e8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/039475cd-1e29-463b-b67f-dd11b11a16db" }, "0:40": { "name": "format_right", @@ -167,7 +167,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/67c40c9c-7af9-48eb-80d8-3b45adbaf605" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5161b281-baf3-41c6-b110-c5a162c248cd" }, "0:34": { "name": "format_justified", @@ -177,7 +177,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/451d2f1b-952c-4f4a-b777-c81c02d24e25" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e31e1fcf-40a6-4a69-92f0-cf7c0eac852a" }, "1054:953": { "name": "format_align_top", @@ -187,7 +187,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2448a1ec-c7ab-4169-b597-34cc35849581" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/36c9a046-6929-4ff0-878c-a177dd05684f" }, "1054:982": { "name": "format_align_medium", @@ -197,7 +197,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4259a0ad-3768-4665-a1c2-65397604be0e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/42644b38-68a9-44f4-a043-5ab6f9de6ed8" }, "1054:894": { "name": "format_align_bottom", @@ -207,7 +207,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/043d71ef-f15f-459a-99b9-20e2f4f5889f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7b7fbe7b-49a3-4949-a8e8-adbb665fb3ae" }, "0:28": { "name": "format_pacing-lines", @@ -217,7 +217,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/86778798-3d12-4d8d-833a-53ae2edce226" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8fbd56fe-f7cc-4771-a1ed-f214c32cc898" }, "0:32": { "name": "format_spacing-letter", @@ -227,7 +227,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/22c0863c-96c6-4b18-9c75-9976b865f55e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/687b9be7-8cae-4417-b518-dcd3091bc737" }, "0:20": { "name": "text_underline", @@ -237,7 +237,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/32f5e096-d798-4c8f-935f-a7d59bb3a1d0" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9cc327fe-bce6-45f5-a6f7-28d36c632d1b" }, "0:18": { "name": "text_italy", @@ -247,7 +247,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e4ec8529-cda6-4308-8cde-00d1b67dda2e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/95b4a893-3c5b-4db2-96b8-5b5de072ef51" }, "0:24": { "name": "text_deleteline", @@ -257,7 +257,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0b82bcd9-9199-4b21-add3-0f7943dd336b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0be18e55-92d2-49f9-9715-a500a77e1d5a" }, "0:13": { "name": "text_bold", @@ -267,7 +267,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4d8352ca-b85d-4145-9f6e-186668b33559" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/60fb26b8-490e-4681-ba69-7cc6d96db050" }, "20:109": { "name": "format_list_bulleted", @@ -277,7 +277,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5b38db02-42ba-404a-9702-f95c7de89943" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/21c485b7-0541-49c3-8bca-a17f6a723cd7" }, "20:113": { "name": "format_list_numbered", @@ -287,7 +287,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a9083de9-c2cb-4e4b-8f89-e2f9af14692e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/30f12a8b-9181-413d-8c9b-55a9fc6313d4" }, "20:131": { "name": "format_indent_decrease", @@ -297,7 +297,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/03666133-4f07-42f1-9a3b-2d18cc07408e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/249c670d-4d36-4c1f-8b0e-cc41dfc12f8e" }, "20:135": { "name": "format_indent_increase", @@ -307,7 +307,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/220576f5-2cdc-4cc7-82eb-0665744ad4c5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b274bb9d-c1fd-4e25-be72-0f2f608e0ac8" }, "0:8": { "name": "text_scale", @@ -317,7 +317,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/db95cd46-8dd2-408c-92c6-c1830ddc4892" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2c90ceae-cf46-47eb-a648-3d9ef2a455a1" }, "323:573": { "name": "display", @@ -327,7 +327,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f8947972-bc09-4d6b-bb8b-4cc62d546bf3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c2b25728-f852-42bd-8311-3e9c4b66fe57" }, "20:105": { "name": "none", @@ -337,7 +337,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/27289214-0f40-483c-b95c-a3bcfad18bbe" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/36573c65-b6b9-4c63-ade0-e37ed4a9f807" }, "36:87": { "name": "add", @@ -347,7 +347,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/88fdb479-d729-480f-b688-61f458004230" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c3501c47-f830-4bb3-83c5-140a4efc0a36" }, "24:49": { "name": "remove", @@ -357,7 +357,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7721e2ba-5ee8-400b-a8f5-35737440ccd4" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ac903dc8-500c-4e42-8dba-25f1059715e6" }, "4:32": { "name": "close", @@ -367,7 +367,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bcf292de-aa57-4e40-865f-8cf0a52aef49" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0f0b813c-d16b-4967-8275-43e13a963141" }, "51:236": { "name": "done", @@ -377,7 +377,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5a1f8657-96e4-4873-a632-d3503d2bef15" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a34db8a7-ef9c-44d2-853f-e43754ea43c8" }, "902:739": { "name": "clear", @@ -387,7 +387,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/28c77fc9-5649-4122-a0e1-b3f8047487aa" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5effe160-a828-4bd9-9703-ab4907a81772" }, "36:102": { "name": "menu", @@ -397,7 +397,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/56c936f2-c686-4f0a-8d94-6948cbd96771" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ff2d459a-f60c-4a4d-a5eb-9e56fec58791" }, "36:98": { "name": "pages", @@ -407,7 +407,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e011ec07-834b-41d4-ac5f-b9212e780a5f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e0dcc1ef-ae2f-417a-a259-267a5b40f187" }, "36:93": { "name": "layers", @@ -417,7 +417,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/99081e18-6aa3-4408-bfa6-c153e1b34116" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7f35ef1c-49bc-4f44-9220-f53de10d9f06" }, "36:88": { "name": "theme", @@ -427,7 +427,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c9eb763a-172f-4c14-9431-02984cf42e1a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7c23d082-68cd-4416-ac3e-302bb967d032" }, "10:9": { "name": "home", @@ -437,7 +437,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7720fdd5-002a-4d6b-990f-40e10cf811d0" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/07f96596-93b6-41d2-87e7-8dd719a5ffd4" }, "36:106": { "name": "desktop", @@ -447,7 +447,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8c1ec213-8d71-4012-8f9b-b001b6b3b224" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9a8e21a0-e58d-4cf8-8289-f305b88d5cd9" }, "36:110": { "name": "tablet_mac", @@ -457,7 +457,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/25455111-dff4-486d-a3f8-eaf0c623a3f4" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6094174b-7a04-446a-8c02-11ac0df01373" }, "36:114": { "name": "smartphone", @@ -467,7 +467,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b5f1b3f9-854b-4cd2-a9d0-303949d01996" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d8f26c43-9695-4570-ac9c-8188ea51d2ce" }, "37:203": { "name": "tune", @@ -477,7 +477,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8e6be04b-d666-4483-989f-677b6644137c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4a1ad6b1-c8d8-4919-9ac4-043b44e52251" }, "36:132": { "name": "undo", @@ -487,7 +487,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/829c677f-c507-485d-8e3c-2e22c489d83d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a4921b71-0a74-489e-a405-b41d930b0a89" }, "36:131": { "name": "redo", @@ -497,7 +497,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4323ffd0-0af0-4b84-87a7-af94e7880c2f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5dc2c194-8161-48f9-8658-793502a4046e" }, "932:766": { "name": "open_in_new", @@ -507,7 +507,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/19763ff7-95c9-46a1-ad64-62f4024750ca" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7d2b456b-b5dc-4f09-995a-2fc5560b0e74" }, "510:619": { "name": "easeOutQuad", @@ -517,7 +517,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/826f753a-f901-4f44-98ef-eb547e97f6c1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ca526672-6b24-40cb-9fae-ace9ffb7ca1c" }, "510:650": { "name": "easeInQuad", @@ -527,7 +527,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f7cad52a-3fdc-4fea-b18b-3eaeb9101aae" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/345d16cb-0ac4-45a0-a17b-1d805e0a4799" }, "510:672": { "name": "easeOutCubic", @@ -537,7 +537,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/85197941-9b6d-4cac-befb-d748dbb32877" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/11634231-b9ff-4c68-b1a4-dac637ff6fa8" }, "510:694": { "name": "easeInCubic", @@ -547,7 +547,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/63d628e9-3865-438c-a403-8655d7e4dc02" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/93296c4a-0c93-46c4-9321-21597ba9d7d8" }, "510:732": { "name": "easeInOutCubic", @@ -557,7 +557,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1efcc090-57be-4608-ab76-ae6b9f36e9d6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a519a697-346b-4d1e-b461-f397caa5358e" }, "510:754": { "name": "easeOutBack", @@ -567,7 +567,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/38fc3bf0-7dc9-40b6-9b2e-8540cd6a292c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6c78203c-7dcc-4edd-bcd8-263c7a42fa39" }, "510:776": { "name": "easeOutElastic", @@ -577,7 +577,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/23f2509c-f66a-4f96-bc71-8ceec23e8fff" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5c25e273-952d-4ca7-bbfd-7ef1d268b39e" }, "510:798": { "name": "easeOutBounce", @@ -587,7 +587,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f8f5eea0-9e96-4237-a177-4fe8fa0befee" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f2ab7ad0-61e0-4491-a757-f7c537fe5ae1" }, "511:661": { "name": "linear", @@ -597,7 +597,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5ce89028-209a-44d1-a956-9f1bed5fcea5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/26ab5e35-c7dd-4c8b-b673-2021c6567702" }, "37:214": { "name": "text", @@ -607,7 +607,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3801a9fa-22e0-4ee2-81c1-e6dcef38de82" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a6b30c52-6aaa-458a-b90e-04d5b736c1bb" }, "37:219": { "name": "paragraph", @@ -617,7 +617,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7800ae78-a558-450f-b8a2-d450e79653a3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/934010ca-be8f-452b-a6f7-cbcefad97631" }, "37:223": { "name": "image", @@ -627,7 +627,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2455a357-1500-408e-9659-02885c8e9b64" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8f6caa94-2867-4fa9-bd82-b0612110e820" }, "37:227": { "name": "container", @@ -637,7 +637,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2955db4a-058f-4441-9b09-83f6bdc351c3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1011ffb6-c420-4f50-ae85-efaefb08b821" }, "320:472": { "name": "layout_vert", @@ -647,7 +647,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ed29447f-991e-4379-8558-2438833f6e0d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a7b97045-6e09-49a7-8d41-c465b265b4c2" }, "320:517": { "name": "layout_horz", @@ -657,7 +657,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9c84e3ed-512c-4ec0-86b8-1fce128a8670" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/79c77d93-72f0-4e75-bf5a-95e072c87a35" }, "958:894": { "name": "layout_sliding", @@ -667,7 +667,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/07fb1cde-9aa4-4cf0-8269-ff02770ec375" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/24f42d24-eeb8-494b-902a-2e389d67d89d" }, "959:958": { "name": "layout_wrap", @@ -677,7 +677,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/00e9f72f-e0ad-4fe8-b8af-1b811e783e10" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9bad7f32-b1a1-43ad-8d4a-29bbb6bf4524" }, "967:1005": { "name": "layout_pageturn", @@ -687,7 +687,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ff9da0de-2f0d-49f6-aedb-963040617558" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0d871fc0-7c28-4447-962b-10bb2cc587d5" }, "959:999": { "name": "section", @@ -697,7 +697,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a18d0a50-95e8-4647-97db-395eab606957" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/59a1ce46-f4f7-4ab2-a3dd-024575e46d41" }, "439:552": { "name": "materiel", @@ -707,7 +707,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/484abe80-55d7-426f-900c-7d9355567832" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/06fc1f48-df78-4d0b-8fb0-8ac2cec046dd" }, "25:97": { "name": "arrow_left", @@ -717,7 +717,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a356d747-ab2a-4c2e-8f45-b4c6ec23eca8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bc7f59dc-e1a0-459e-b959-476a91ebf3c7" }, "25:117": { "name": "arrow_right", @@ -727,7 +727,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ed96b117-3c03-4a46-9a79-76029e42f2e6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/58a3f166-5d53-46b9-8d50-ee03f0fad714" }, "83:353": { "name": "direction_down", @@ -737,7 +737,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/606ed5c9-83db-4f4b-bcbf-3e9a88ef0599" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0163d9cc-e529-49fe-8720-bbfa3ab92e2e" }, "83:360": { "name": "direction_right", @@ -747,7 +747,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/325f11cf-356f-4d41-b9dd-1d4437dcf830" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/59303fce-ef3d-47c3-9b15-89b56d71ca4c" }, "91:351": { "name": "direction_up", @@ -757,7 +757,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e82d4bae-df90-451d-b68f-156926fc4119" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/24a9cb9f-8b82-4723-b7b8-2f003b37cbd9" }, "91:358": { "name": "direction_left", @@ -767,7 +767,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/29845a67-ee80-41d9-9932-7c73902ea24b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/770f3ab0-2282-4ba9-87eb-47467bc3e672" }, "37:207": { "name": "arrow_down", @@ -777,7 +777,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/672a04ad-18a1-45b7-9dc9-ccf747442543" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2371912b-91bd-4993-a220-0b1432b725d8" }, "54:237": { "name": "arrow_right", @@ -787,7 +787,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/edb29b7c-bc5e-4f02-8e7c-20e4457e5c9f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b57dd2d8-0cd2-4ab8-9447-0d9c8b7f2fb8" }, "30:21": { "name": "slider_invisible", @@ -797,7 +797,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f59a9be9-0c5a-4a1d-b72a-e42bf15c7cf9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2f78515d-8947-46f2-8b40-2e99fc264324" }, "406:539": { "name": "arrow_triangle", @@ -807,7 +807,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ea1de76a-59ad-4872-acb7-e0544cc3e362" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5fa15071-a8a7-4de5-8501-fe2b2c694d25" }, "60:260": { "name": "page_header", @@ -817,7 +817,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7418bb67-956e-4e31-87d5-49c929a0cfef" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/de0c3070-c17a-457e-a9e7-1f013cbe4174" }, "65:509": { "name": "page_footer", @@ -827,7 +827,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a3c6908c-e898-451b-a0e5-192a80d4d427" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/82913c96-a2ea-49c1-b09c-784eec1f3d42" }, "65:522": { "name": "video", @@ -837,7 +837,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b817a848-a647-4297-9bfe-dbf27b65c63b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/288e8bcb-058c-42e2-ab25-a147d2d46a25" }, "65:550": { "name": "star", @@ -847,7 +847,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/15c0a82e-72cc-400c-8a56-2373e08a2b31" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b3e4aa5a-142d-482f-bff3-3b7e8adb1209" }, "66:335": { "name": "file_folder", @@ -857,7 +857,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9d9f9b82-5b61-4f86-b01f-9426c28c605d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/801eeae1-2cbb-4a7b-9330-1c60bb60a8af" }, "65:583": { "name": "contacts", @@ -867,7 +867,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/93a60d0a-8f7c-4f37-be09-b1785259f670" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6f7c779e-ca4b-4537-86c6-2a930b5a13c6" }, "52:739": { "name": "rotate_left", @@ -877,7 +877,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b7eff36c-7b7d-4f84-bb58-224792b61c05" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b8f9b444-d3c3-4e94-ae3c-f9e2e785cf78" }, "314:443": { "name": "width_fixed", @@ -887,7 +887,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f10f067e-63fd-42e5-89e7-9f346db4672c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c459a644-202f-44af-8772-a3809b975fed" }, "314:416": { "name": "width_fill", @@ -897,7 +897,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/563058d6-4e17-4e92-812a-c61797600f5b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/facbfbbb-7e1c-45aa-aab3-2396bea39330" }, "314:531": { "name": "width_hug", @@ -907,7 +907,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a680c788-300e-47db-8653-8763c6f3aab0" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/31f49ba4-f531-4be9-b557-dfb5d4218cbd" }, "314:518": { "name": "height_fixed", @@ -917,7 +917,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6f55fd16-c00f-4175-af3c-5b73662184e0" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3990b3a1-21c4-443a-ad3b-53d832a8e5e0" }, "314:571": { "name": "height_fill", @@ -927,7 +927,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cd5c28b3-e180-4b42-9ccd-46a5e13548fd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b1ba5837-14f0-4834-ab1f-bd840d6e51ec" }, "314:581": { "name": "height_hug", @@ -937,7 +937,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/269ed22f-6729-41ad-9822-3e060e4141c7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/74148ba8-b5cc-4545-b5f8-418e2a1d2375" }, "10:22": { "name": "settings", @@ -947,7 +947,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5599087d-8bfe-4646-9897-9214dc70ccb9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8875fbf1-9d7b-4f95-a0f8-aca9ffe6bc71" }, "922:781": { "name": "import", @@ -957,7 +957,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e9220741-58db-4cd0-bd4a-0c0a13da4ed9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/eff7feb2-2a60-4866-82de-16c512290e27" }, "10:117": { "name": "link", @@ -967,7 +967,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/794f2268-38df-4643-a99d-4085e733c007" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/af175788-ea55-4a87-b496-508900d8651d" }, "21:46": { "name": "locked", @@ -977,7 +977,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/86056eff-a300-4360-9306-c99248faccd7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bf4d4704-43c0-41ac-a834-63f3e373b91a" }, "21:54": { "name": "unlocked", @@ -987,7 +987,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d08f0197-b40e-41b1-a47d-295f715c78b3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/02bdd17e-c9cf-46d6-9f80-9d33e7fe5c21" }, "24:56": { "name": "eye", @@ -997,7 +997,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/71c704d5-9025-41d1-a28f-6b63f88d59b2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/da520acf-363a-42c6-bf1b-bf580e26d209" }, "52:645": { "name": "eye_off", @@ -1007,7 +1007,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7f9037c7-93ab-4370-b893-4511c6767002" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2c5a508e-bbe0-41de-85ba-bb2820aafa74" }, "65:301": { "name": "eye_display", @@ -1017,7 +1017,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3824c732-8135-420a-ae80-e1d002338e33" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e1c5197f-3053-4f18-bdaa-f218ab355672" }, "301:399": { "name": "play", @@ -1027,7 +1027,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/321f86d8-acef-476b-9683-9815406dbd9d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4a16a1fe-5587-413a-93e1-a73836ee2def" }, "410:565": { "name": "stop", @@ -1037,7 +1037,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9d83cf55-5025-44cd-bc82-b8d72bfb6336" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3ceba735-1d15-438d-b506-af40b295a2d3" }, "304:400": { "name": "edit", @@ -1047,7 +1047,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/53bbcf28-9432-4cec-a061-c6e456be4fbb" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f8d8b559-97ff-4b7a-ac64-324885529760" }, "25:161": { "name": "colorpicker", @@ -1057,7 +1057,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6edfe8ed-ec78-4a7e-b57d-cd8713c81fc1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cfdb90d0-86de-4c25-99db-d3fa9526f7d6" }, "52:720": { "name": "animation", @@ -1067,7 +1067,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d1178bdf-608e-4dee-98b5-a6061a5f42de" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0ac117af-4db2-4c3c-94d1-447f3b13c3b1" }, "65:412": { "name": "crop", @@ -1077,7 +1077,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/451a1283-bccd-4433-af8e-3fd8482b910a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4ec107cc-6185-4dad-87a3-07bb40c80de8" }, "65:417": { "name": "focus", @@ -1087,7 +1087,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5d9822b3-1422-464f-b931-015e8f3a6c0d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bdd01e7d-216f-4b4b-a5a1-0bf8bb738662" }, "52:592": { "name": "open_full", @@ -1097,7 +1097,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1e29dbad-1866-4578-abc0-67ecaf775e8d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7f4c7978-792e-4264-b79d-656320b36149" }, "52:682": { "name": "close_full", @@ -1107,7 +1107,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b6c05fc3-b31f-4895-bfed-5b81d96131fe" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c89130c1-fb90-46de-b358-60f7ffb0eab2" }, "409:535": { "name": "direction_center", @@ -1117,7 +1117,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/482051b7-1393-4e39-88cb-611b0a7f209f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8359cbd3-06c3-46a2-9b3e-ff119d0f8a03" }, "18:14": { "name": "align_left", @@ -1127,7 +1127,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8903fc45-5654-46eb-b98a-eb2cc838fc41" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a47229b5-7ced-4542-9856-ef7347f78a4a" }, "18:83": { "name": "align_horiz_centers", @@ -1137,7 +1137,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7f338d26-7ac5-4f0b-9b2d-4e02f5cd0524" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c7922230-87fe-4d6c-bb80-5ee7a8d2d9d3" }, "18:94": { "name": "align_right", @@ -1147,7 +1147,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/574fcc68-0129-4803-a881-54b962c5b2fa" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fa564897-7962-4997-b92c-db380715a5c5" }, "18:92": { "name": "align_top", @@ -1157,7 +1157,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d10b69b5-d496-440d-83b9-28a8b13c4dcf" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f58948bc-1382-4cef-a7ee-29d4bd7d1104" }, "18:90": { "name": "align_vert_centers", @@ -1167,7 +1167,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/08e93319-8e84-413e-b4e9-a775aa458ebc" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/24a996ab-d56e-4f33-8fd9-a523f0dd9e58" }, "18:88": { "name": "align_bottom", @@ -1177,7 +1177,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/839efcf1-e4d5-4822-878b-9ee97400bd0c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5b018adf-a6b1-4680-97d7-9d19efc3ed0f" }, "18:86": { "name": "align_arrange_horiz", @@ -1187,7 +1187,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2f2662f9-40dc-4624-877a-5861dbd4d03f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/69018dbc-0d1b-49ef-817a-aef41c454ffa" }, "18:84": { "name": "align_arrange_vert", @@ -1197,7 +1197,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8c204cca-dd5f-4492-9ff6-b0dfb7f6f700" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ecb79f79-d164-4628-89d3-bfe542c89949" }, "315:701": { "name": "vert_left", @@ -1207,7 +1207,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d49509a6-8197-4c2d-8da3-ef68502b4e5d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fe0afef1-1763-4528-91d6-406aba7df0fe" }, "315:719": { "name": "vert_centers", @@ -1217,7 +1217,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3681102a-0e69-4fb9-bc0b-23b9ba8ec8fc" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/19807b56-0a64-4261-ba44-cb4ab80149b7" }, "315:717": { "name": "vert_right", @@ -1227,7 +1227,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/706e5046-8f51-428f-9234-8a2319aba35c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/40ebe1ba-50b2-42a6-b555-7e26af0eaff1" }, "315:715": { "name": "horiz_top", @@ -1237,7 +1237,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d84bde30-5522-4178-855f-d12c982208c6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a6f4c4bb-73a5-4f8c-a39c-f185fb204169" }, "315:713": { "name": "horiz_centers", @@ -1247,7 +1247,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/58eb14aa-70f2-4fa4-92c1-40362bf20b2d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bc3189d7-1508-4ae2-896a-04550b177bb3" }, "315:711": { "name": "horiz_bottom", @@ -1257,7 +1257,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f519fcbb-949c-4218-999a-50b67b41ae12" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/47654178-9a2d-4f59-8b12-d781197da1d5" }, "815:839": { "name": "crop", @@ -1267,7 +1267,7 @@ "description": "", "width": 28, "height": 28, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ed268008-b33e-4f73-9f99-a24be4dd6a52" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/744fbbae-7ce4-4773-92d9-d940f3aa23c3" }, "815:863": { "name": "file_outline", @@ -1277,7 +1277,7 @@ "description": "add, create, new, plus, +", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a2f8f9e8-c728-41f3-8b38-5116164040e3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b9fe85f2-4a90-442c-b3b6-ae3c3b7dc9cb" }, "815:869": { "name": "grid_outline", @@ -1287,7 +1287,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5c7f1cf7-725d-4ab8-8990-c36c3f38b498" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b05474d7-82af-4d48-b758-0fbbe3d858d6" }, "10:122": { "name": "help", @@ -1297,7 +1297,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b7031b20-e367-408f-acb7-8d8989cc8712" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d6118792-f62b-4006-bef9-8be8121ae0bd" }, "65:330": { "name": "check", @@ -1307,7 +1307,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8bf55450-a08b-4d1e-ba9d-792ba8425d34" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/579bf8db-c7df-4a8b-8bae-4a62b843d510" }, "65:350": { "name": "info", @@ -1317,7 +1317,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8aafb1df-627b-48d0-b1aa-6787f43e7b06" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fc9a3189-5e2d-409e-bd4f-83e994becb0c" }, "65:373": { "name": "alert", @@ -1327,7 +1327,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/61a3c460-dce6-4462-b938-d565ca476f89" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9c7b5be2-30c0-45ed-9c5c-fe8645bf3ee8" }, "108:396": { "name": "help_fill", @@ -1337,7 +1337,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/790ee51e-f159-4592-bfbd-f65c94607475" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b2689e1b-ba77-4e7b-8342-4cfce4a20b90" }, "109:392": { "name": "check_fill", @@ -1347,7 +1347,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/625c83d1-6fc8-4d3c-b090-86cb41db3d95" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3a3669f8-352d-45b3-b40c-d395218a495d" }, "109:393": { "name": "info_fill", @@ -1357,7 +1357,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1b09d7b7-dd1c-45ac-8ce1-614a0cbb2337" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/94d48d7f-097f-4e19-8ea2-05d9e9e92925" }, "109:394": { "name": "alert_fill", @@ -1367,7 +1367,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5649e5db-7f5e-40c0-90e0-59a542d4961c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/beaf81a3-6dc5-41f9-9a2e-f2b8da50eb1c" }, "818:886": { "name": "radio_button_unchecked", @@ -1377,7 +1377,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0d449d73-0ee0-4c2c-ab89-91bc6cdb6a45" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a5feee62-10c5-4a85-8891-52a5e4c5b773" }, "23:18": { "name": "corner", @@ -1387,7 +1387,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b4c5201c-9e8f-48d9-8307-b4b20e5a5849" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ee4087ef-2ca9-4401-80de-819471c0f02a" }, "37:29": { "name": "corner_radius_top_left", @@ -1397,7 +1397,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4c7d91d4-47ae-4eac-a111-90394ab1927d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8516c695-2382-429f-870c-830731fbddcd" }, "37:35": { "name": "corner_radius_top_right", @@ -1407,7 +1407,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/58e69c92-64d2-411e-964e-595424f037dc" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f503c7b0-7912-4a98-ae14-89a6109adf77" }, "37:45": { "name": "corner_radius_bottom_left", @@ -1417,7 +1417,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/651cbfb3-c65e-4a37-b6e4-7e4ef02c12a1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/27c142c0-537a-45e0-9342-efdc76a05a7a" }, "37:40": { "name": "corner_radius_bottom_right", @@ -1427,7 +1427,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fd044b0e-d6be-4bb4-b30e-fff26426ee31" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2839375b-3f21-49a6-a488-6b756abc6312" }, "953:784": { "name": "wrap", @@ -1437,7 +1437,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7157f920-ede3-4dce-a213-e55934438055" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d860a92b-a295-4320-830f-668b54a7a5bc" }, "955:831": { "name": "padding_independent", @@ -1447,7 +1447,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/278476c2-8b9f-4a68-bcad-07e6b929c025" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/69706d42-95f2-4a84-8903-b5e62835a134" }, "966:980": { "name": "padding", @@ -1457,7 +1457,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ec71d124-731b-4e51-a346-7812cdfec122" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7527c370-40c7-4004-8642-4e7fadf352ac" }, "954:847": { "name": "padding_left", @@ -1467,7 +1467,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/05019482-7b5b-4ad5-84d8-7c141c0867b0" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5fc61340-6dd7-4353-9ae7-d82bb9e425a9" }, "963:891": { "name": "padding_right", @@ -1477,7 +1477,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ae89818f-7bdd-473f-9e3c-03f6af63951d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0b17ae1d-b89d-4eae-8111-9608be688272" }, "954:884": { "name": "padding_top", @@ -1487,7 +1487,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f4e5e5c5-5f8f-47d1-a64e-15a4bf9dcd51" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/59b50e5e-3c83-4ec5-be38-f80ac54c8b8f" }, "963:917": { "name": "padding_bottom", @@ -1497,7 +1497,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d8287b78-c200-4151-9b55-fd08d3920369" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f81ac92c-2fb8-486b-9253-d84f57559d19" }, "954:1003": { "name": "spacing_horiz", @@ -1507,7 +1507,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f1d3d224-839b-4703-b48b-14451e441191" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f84ea29e-6b4d-4ae3-9221-a2c7a657316e" }, "954:970": { "name": "spacing_vert", @@ -1517,7 +1517,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/48eb6c6f-f82e-44fc-9945-672b51a3cd5b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/aae72482-15d8-4eda-a320-88d0690f221f" }, "786:735": { "name": "style", @@ -1527,7 +1527,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/34be52d3-d5ec-42f4-931e-ce47693f57a5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8c476414-fbd5-41de-895b-4c584b65b3c6" }, "25:171": { "name": "more_horiz", @@ -1537,7 +1537,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1afb5f38-993c-4d03-af08-94dd758defb9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6276ab5d-4da8-472b-81c9-0b8039f66415" }, "24:18": { "name": "drag_handle", @@ -1547,7 +1547,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/142a8370-45ba-459d-864e-2e9bdeac3b19" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cc1341fc-54c4-487c-ba20-ceccf1ddcd9e" }, "10:102": { "name": "stop_circle", @@ -1557,7 +1557,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ac277475-7bcf-4b78-9b67-897742b234bd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9db471a7-bd99-435b-8837-e12480e3016a" }, "10:109": { "name": "data_barchart", @@ -1567,7 +1567,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b3b4e2ce-6f1c-468e-a158-f004a922dd8e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8c224d58-2a1d-4260-bf13-b4e0bd535e78" }, "935:783": { "name": "figma", @@ -1577,7 +1577,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/68b3e8d3-7b32-4115-ba6d-edfa1435a93c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9db2bfed-d5a4-484f-9713-32ade7e0d3b7" }, "402:510": { "name": "time", @@ -1587,7 +1587,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fdbe9eed-8a8e-4809-9a22-ae16cee29a95" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/150e4ee3-bf78-4880-a849-4d3c6a52745e" }, "924:780": { "name": "global", @@ -1597,7 +1597,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/74e64028-0780-46a4-801e-d17ca5608629" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/09607cfe-6ccd-4517-a7d9-69e23aa14790" }, "1060:928": { "name": "earth", @@ -1607,7 +1607,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/df0d2cdf-5d3e-4abd-98d6-7094d9a08d8b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/208c5b78-fe97-4a1c-ad1d-38114f72d5fd" }, "43:204": { "name": "cloud_off", @@ -1617,7 +1617,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/82b4488e-8631-48fd-a317-19db6db0aa60" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/738cd225-5dc8-4b0c-af73-1d9015cf1cda" }, "43:210": { "name": "cloud_done", @@ -1627,7 +1627,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/76eb0668-1d76-4a6f-ba84-b774c09395fe" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/af04f1a1-acc3-4d57-a7ac-6db506041242" }, "919:758": { "name": "loading", @@ -1637,7 +1637,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/40dff463-1174-44ba-aa37-b0a2b90d83f6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7486e39c-fe07-4132-88af-eb12a3a99d0c" }, "922:764": { "name": "loading_white", @@ -1647,7 +1647,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ba0c80f7-7473-4e43-b319-b017e181b545" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/88b8e202-723f-4700-8f58-2304e21435b1" }, "490:565": { "name": "fixed", @@ -1657,7 +1657,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f4a25c08-c0c9-4a02-95ab-8bc461029ef2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d9f1dfa0-974a-486d-8a71-c2fbe316b1d8" }, "1065:957": { "name": "focus", @@ -1667,7 +1667,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4a5b97e7-fa31-494a-9172-1793bacd7574" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e8cf8f6e-a08c-4a9d-9622-274298849a80" }, "43:217": { "name": "qr_code", @@ -1677,7 +1677,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4f6afbed-e49f-4e5a-8e77-ead5d8fdb7c7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/60382f3f-be9e-49ef-942a-ed7d203a4157" }, "512:726": { "name": "mouse_Hover", @@ -1687,7 +1687,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0e67b7b1-9d4b-4b53-9679-3886c9429550" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/914ecab2-4e34-4b3f-91a3-e4794714806f" }, "403:511": { "name": "mouse_Click", @@ -1697,7 +1697,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/14fbd5ff-7fa2-45b0-bf1d-d117f0e7ac2c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a033c761-75a4-468c-a6ea-337bff9844bd" }, "513:781": { "name": "scroll", @@ -1707,7 +1707,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4afd5d13-c54e-4372-86eb-dcdbd741fa6f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c21a29b4-0c7d-4fed-b66f-e7c1e41a9334" }, "905:809": { "name": "event", @@ -1717,7 +1717,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f127cc51-767f-4c59-a32f-b1d916e33c77" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/034dd767-c50f-4dff-ab1a-fbc6adaa94ce" }, "404:540": { "name": "animation", @@ -1727,7 +1727,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8ed310d7-d44d-4259-aed6-3c5ee87eb2eb" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e17cc1f7-067f-4114-8a62-b83dc7d3f455" }, "848:743": { "name": "trigger", @@ -1737,7 +1737,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8722f01a-e78b-4bc1-b80d-7311d80a5afe" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c28a95d7-179f-4a7a-b272-8a4311585d7e" }, "907:783": { "name": "effect", @@ -1747,7 +1747,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/78c02bb8-e714-4f47-9240-788ed2c4238a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d7bd10e5-b167-4618-ab7b-a61dc5ffe258" }, "514:891": { "name": "move", @@ -1757,7 +1757,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7f3d68fe-429a-4d31-b3ad-087ce4b9648c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d3583fe2-0a73-4d55-a628-aee315967501" }, "514:901": { "name": "scale", @@ -1767,7 +1767,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9b6b64b9-1925-44b7-abe5-077f0b7b0b39" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d9d634d6-1831-4ce2-aed1-016dc7007fd6" }, "514:911": { "name": "skew", @@ -1777,6 +1777,6 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fc221527-a668-46af-9b52-8f73fd4718db" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/08cb3b71-a902-4345-a77e-92fec65ff736" } } diff --git a/packages/icons-editor/src/icons/Eye.ts b/packages/icons-editor/src/icons/Eye.ts index 329b5688829..7e1099e3623 100644 --- a/packages/icons-editor/src/icons/Eye.ts +++ b/packages/icons-editor/src/icons/Eye.ts @@ -21,69 +21,11 @@ export const EyeIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - - - - - - - - - - - - - - - - - `; }; diff --git a/packages/icons-editor/src/icons/Global.ts b/packages/icons-editor/src/icons/Global.ts index 3c56290260f..97746faff85 100644 --- a/packages/icons-editor/src/icons/Global.ts +++ b/packages/icons-editor/src/icons/Global.ts @@ -21,12 +21,6 @@ export const GlobalIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - - - - - - - - - - - - - - - - - - - - - - - + `; }; diff --git a/packages/icons-editor/src/icons/Unlocked.ts b/packages/icons-editor/src/icons/Unlocked.ts index d09bd22086a..9634de675d5 100644 --- a/packages/icons-editor/src/icons/Unlocked.ts +++ b/packages/icons-editor/src/icons/Unlocked.ts @@ -21,69 +21,11 @@ export const UnlockedIcon = (): string | TemplateResult => { viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > - - - - - - - - - - - - - - - - - `; }; diff --git a/packages/icons-editor/src/svg/Eye.svg b/packages/icons-editor/src/svg/Eye.svg index 97a510ac0a6..0e013ab87db 100644 --- a/packages/icons-editor/src/svg/Eye.svg +++ b/packages/icons-editor/src/svg/Eye.svg @@ -1,20 +1,3 @@ - - - - - - - - - - - - - - - - - diff --git a/packages/icons-editor/src/svg/Global.svg b/packages/icons-editor/src/svg/Global.svg index 805d8e894bf..f085f5bc18c 100644 --- a/packages/icons-editor/src/svg/Global.svg +++ b/packages/icons-editor/src/svg/Global.svg @@ -1,4 +1,3 @@ - diff --git a/packages/icons-editor/src/svg/Menu.svg b/packages/icons-editor/src/svg/Menu.svg index e585de359c3..fef024be1e8 100644 --- a/packages/icons-editor/src/svg/Menu.svg +++ b/packages/icons-editor/src/svg/Menu.svg @@ -1,25 +1,3 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/packages/icons-editor/src/svg/Unlocked.svg b/packages/icons-editor/src/svg/Unlocked.svg index 3ad030cf5f3..e292d509613 100644 --- a/packages/icons-editor/src/svg/Unlocked.svg +++ b/packages/icons-editor/src/svg/Unlocked.svg @@ -1,20 +1,3 @@ - - - - - - - - - - - - - - - - - diff --git a/packages/icons/src/icons-editor.svg.ts b/packages/icons/src/icons-editor.svg.ts index 52b064aabe6..d78c32bbdca 100644 --- a/packages/icons/src/icons-editor.svg.ts +++ b/packages/icons/src/icons-editor.svg.ts @@ -11,4 +11,4 @@ OF ANY KIND, either express or implied. See the License for the specific languag governing permissions and limitations under the License. */ import { svg } from '@iliad-ui/base'; -export default svg``; +export default svg``; From 4611c8cae8cdaf2843e4ed6ce965b3369eb27359 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Tue, 13 Sep 2022 15:05:17 +0800 Subject: [PATCH 08/28] chore: release new versions - @iliad-ui/action-bar@0.7.4 - @iliad-ui/action-menu@0.16.4 - @iliad-ui/bundle@0.27.4 - @iliad-ui/icons-editor@0.11.0 - @iliad-ui/icons@0.22.0 - @iliad-ui/picker@0.14.4 - @iliad-ui/popover@0.16.4 - @iliad-ui/react@0.20.1 - @iliad-ui/split-button@0.10.4 - documentation@0.1.35 - example-project-rollup@0.5.4 - example-project-webpack@1.6.4 - @iliad-ui/story-decorator@0.10.4 - @iliad-ui/vrt-compare@0.7.4 --- packages/action-bar/CHANGELOG.md | 4 ++++ packages/action-bar/package.json | 4 ++-- packages/action-menu/CHANGELOG.md | 4 ++++ packages/action-menu/package.json | 4 ++-- packages/bundle/CHANGELOG.md | 4 ++++ packages/bundle/package.json | 16 ++++++++-------- packages/icons-editor/CHANGELOG.md | 6 ++++++ packages/icons-editor/package.json | 2 +- packages/icons/CHANGELOG.md | 6 ++++++ packages/icons/package.json | 2 +- packages/picker/CHANGELOG.md | 4 ++++ packages/picker/package.json | 4 ++-- packages/popover/CHANGELOG.md | 4 ++++ packages/popover/package.json | 4 ++-- packages/react/CHANGELOG.md | 4 ++++ packages/react/package.json | 6 +++--- packages/split-button/CHANGELOG.md | 4 ++++ packages/split-button/package.json | 4 ++-- projects/documentation/CHANGELOG.md | 4 ++++ projects/documentation/package.json | 4 ++-- projects/example-project-rollup/CHANGELOG.md | 4 ++++ projects/example-project-rollup/package.json | 10 +++++----- projects/example-project-webpack/CHANGELOG.md | 4 ++++ projects/example-project-webpack/package.json | 6 +++--- projects/story-decorator/CHANGELOG.md | 4 ++++ projects/story-decorator/package.json | 4 ++-- projects/vrt-compare/CHANGELOG.md | 4 ++++ projects/vrt-compare/package.json | 4 ++-- 28 files changed, 97 insertions(+), 37 deletions(-) diff --git a/packages/action-bar/CHANGELOG.md b/packages/action-bar/CHANGELOG.md index fb063df2a57..4217fd734e9 100644 --- a/packages/action-bar/CHANGELOG.md +++ b/packages/action-bar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.7.3...@iliad-ui/action-bar@0.7.4) (2022-09-13) + +**Note:** Version bump only for package @iliad-ui/action-bar + ## [0.7.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.7.2...@iliad-ui/action-bar@0.7.3) (2022-09-06) **Note:** Version bump only for package @iliad-ui/action-bar diff --git a/packages/action-bar/package.json b/packages/action-bar/package.json index 82180912f41..03b1ef12cba 100644 --- a/packages/action-bar/package.json +++ b/packages/action-bar/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-bar", - "version": "0.7.3", + "version": "0.7.4", "publishConfig": { "access": "public" }, @@ -45,7 +45,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/popover": "^0.16.3", + "@iliad-ui/popover": "^0.16.4", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/action-menu/CHANGELOG.md b/packages/action-menu/CHANGELOG.md index 31496e98dcc..68f423e47ea 100644 --- a/packages/action-menu/CHANGELOG.md +++ b/packages/action-menu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.16.3...@iliad-ui/action-menu@0.16.4) (2022-09-13) + +**Note:** Version bump only for package @iliad-ui/action-menu + ## [0.16.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.16.2...@iliad-ui/action-menu@0.16.3) (2022-09-06) **Note:** Version bump only for package @iliad-ui/action-menu diff --git a/packages/action-menu/package.json b/packages/action-menu/package.json index 056527e8445..bf8672c2829 100644 --- a/packages/action-menu/package.json +++ b/packages/action-menu/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-menu", - "version": "0.16.3", + "version": "0.16.4", "publishConfig": { "access": "public" }, @@ -51,7 +51,7 @@ "@iliad-ui/icon": "^0.17.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/menu": "^0.17.2", - "@iliad-ui/picker": "^0.14.3", + "@iliad-ui/picker": "^0.14.4", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/bundle/CHANGELOG.md b/packages/bundle/CHANGELOG.md index c3a71b6a9a0..d46c8f970e0 100644 --- a/packages/bundle/CHANGELOG.md +++ b/packages/bundle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.27.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.3...@iliad-ui/bundle@0.27.4) (2022-09-13) + +**Note:** Version bump only for package @iliad-ui/bundle + ## [0.27.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.2...@iliad-ui/bundle@0.27.3) (2022-09-06) **Note:** Version bump only for package @iliad-ui/bundle diff --git a/packages/bundle/package.json b/packages/bundle/package.json index 72b4e58cfef..f8e07e4a03f 100644 --- a/packages/bundle/package.json +++ b/packages/bundle/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/bundle", - "version": "0.27.3", + "version": "0.27.4", "publishConfig": { "access": "public" }, @@ -47,10 +47,10 @@ ], "dependencies": { "@iliad-ui/accordion": "^0.9.2", - "@iliad-ui/action-bar": "^0.7.3", + "@iliad-ui/action-bar": "^0.7.4", "@iliad-ui/action-button": "^0.14.2", "@iliad-ui/action-group": "^0.12.2", - "@iliad-ui/action-menu": "^0.16.3", + "@iliad-ui/action-menu": "^0.16.4", "@iliad-ui/asset": "^0.9.2", "@iliad-ui/avatar": "^0.14.2", "@iliad-ui/banner": "^0.13.2", @@ -71,8 +71,8 @@ "@iliad-ui/field-group": "^0.8.2", "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/icon": "^0.17.2", - "@iliad-ui/icons": "^0.21.0", - "@iliad-ui/icons-editor": "^0.10.0", + "@iliad-ui/icons": "^0.22.0", + "@iliad-ui/icons-editor": "^0.11.0", "@iliad-ui/icons-ui": "^0.13.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/iconset": "^0.13.2", @@ -82,8 +82,8 @@ "@iliad-ui/meter": "^0.9.2", "@iliad-ui/number-field": "^0.9.2", "@iliad-ui/overlay": "^0.18.2", - "@iliad-ui/picker": "^0.14.3", - "@iliad-ui/popover": "^0.16.3", + "@iliad-ui/picker": "^0.14.4", + "@iliad-ui/popover": "^0.16.4", "@iliad-ui/progress-bar": "^0.8.2", "@iliad-ui/progress-circle": "^0.7.2", "@iliad-ui/quick-actions": "^0.9.2", @@ -91,7 +91,7 @@ "@iliad-ui/search": "^0.13.2", "@iliad-ui/sidenav": "^0.15.2", "@iliad-ui/slider": "^0.18.2", - "@iliad-ui/split-button": "^0.10.3", + "@iliad-ui/split-button": "^0.10.4", "@iliad-ui/split-view": "^0.9.2", "@iliad-ui/status-light": "^0.13.2", "@iliad-ui/switch": "^0.12.2", diff --git a/packages/icons-editor/CHANGELOG.md b/packages/icons-editor/CHANGELOG.md index 2dd6b97c961..727685a0979 100644 --- a/packages/icons-editor/CHANGELOG.md +++ b/packages/icons-editor/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.11.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.10.0...@iliad-ui/icons-editor@0.11.0) (2022-09-13) + +### Features + +- icons 更新 ([f46db89](https://github.com/gaoding-inc/iliad-ui/commit/f46db89695723aaf57b9ae9975ee3f37f35413e1)) + # [0.10.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.9.2...@iliad-ui/icons-editor@0.10.0) (2022-09-06) ### Features diff --git a/packages/icons-editor/package.json b/packages/icons-editor/package.json index 82dc44bedc1..2fe24f13cf1 100644 --- a/packages/icons-editor/package.json +++ b/packages/icons-editor/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons-editor", - "version": "0.10.0", + "version": "0.11.0", "publishConfig": { "access": "public" }, diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index 03ac8b60660..d9b7209827a 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.22.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.21.0...@iliad-ui/icons@0.22.0) (2022-09-13) + +### Features + +- icons 更新 ([f46db89](https://github.com/gaoding-inc/iliad-ui/commit/f46db89695723aaf57b9ae9975ee3f37f35413e1)) + # [0.21.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.20.2...@iliad-ui/icons@0.21.0) (2022-09-06) ### Features diff --git a/packages/icons/package.json b/packages/icons/package.json index f6a6899cc0d..b870f4615bb 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons", - "version": "0.21.0", + "version": "0.22.0", "publishConfig": { "access": "public" }, diff --git a/packages/picker/CHANGELOG.md b/packages/picker/CHANGELOG.md index ea5be3c6b73..3e827e76266 100644 --- a/packages/picker/CHANGELOG.md +++ b/packages/picker/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.14.3...@iliad-ui/picker@0.14.4) (2022-09-13) + +**Note:** Version bump only for package @iliad-ui/picker + ## [0.14.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.14.2...@iliad-ui/picker@0.14.3) (2022-09-06) **Note:** Version bump only for package @iliad-ui/picker diff --git a/packages/picker/package.json b/packages/picker/package.json index 27b973dde1d..44788301d79 100644 --- a/packages/picker/package.json +++ b/packages/picker/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/picker", - "version": "0.14.3", + "version": "0.14.4", "publishConfig": { "access": "public" }, @@ -55,7 +55,7 @@ "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/menu": "^0.17.2", "@iliad-ui/overlay": "^0.18.2", - "@iliad-ui/popover": "^0.16.3", + "@iliad-ui/popover": "^0.16.4", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/popover/CHANGELOG.md b/packages/popover/CHANGELOG.md index 98ae42e09e2..94f4a22c57c 100644 --- a/packages/popover/CHANGELOG.md +++ b/packages/popover/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.16.3...@iliad-ui/popover@0.16.4) (2022-09-13) + +**Note:** Version bump only for package @iliad-ui/popover + ## [0.16.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.16.2...@iliad-ui/popover@0.16.3) (2022-09-06) **Note:** Version bump only for package @iliad-ui/popover diff --git a/packages/popover/package.json b/packages/popover/package.json index f1b486e79a3..bcd451f59b3 100644 --- a/packages/popover/package.json +++ b/packages/popover/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/popover", - "version": "0.16.3", + "version": "0.16.4", "publishConfig": { "access": "public" }, @@ -47,7 +47,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/icons-editor": "^0.10.0", + "@iliad-ui/icons-editor": "^0.11.0", "@iliad-ui/overlay": "^0.18.2", "tslib": "^2.0.0" }, diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index f64931502cc..4f608840856 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.20.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.20.0...@iliad-ui/react@0.20.1) (2022-09-13) + +**Note:** Version bump only for package @iliad-ui/react + # [0.20.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.19.2...@iliad-ui/react@0.20.0) (2022-09-06) ### Features diff --git a/packages/react/package.json b/packages/react/package.json index 526731606c1..27baaa26f58 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/react", - "version": "0.20.0", + "version": "0.20.1", "publishConfig": { "access": "public" }, @@ -42,8 +42,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/bundle": "^0.27.3", - "@iliad-ui/icons": "^0.21.0", + "@iliad-ui/bundle": "^0.27.4", + "@iliad-ui/icons": "^0.22.0", "@lit-labs/react": "^1.0.1", "@types/lodash": "^4.14.175", "@types/react": "^17.0.30", diff --git a/packages/split-button/CHANGELOG.md b/packages/split-button/CHANGELOG.md index 729f702196a..86c1a0aeb74 100644 --- a/packages/split-button/CHANGELOG.md +++ b/packages/split-button/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.10.3...@iliad-ui/split-button@0.10.4) (2022-09-13) + +**Note:** Version bump only for package @iliad-ui/split-button + ## [0.10.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.10.2...@iliad-ui/split-button@0.10.3) (2022-09-06) **Note:** Version bump only for package @iliad-ui/split-button diff --git a/packages/split-button/package.json b/packages/split-button/package.json index 9dfd4298e42..41c03bc4d7f 100644 --- a/packages/split-button/package.json +++ b/packages/split-button/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/split-button", - "version": "0.10.3", + "version": "0.10.4", "publishConfig": { "access": "public" }, @@ -52,7 +52,7 @@ "@iliad-ui/icons-ui": "^0.13.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/overlay": "^0.18.2", - "@iliad-ui/picker": "^0.14.3", + "@iliad-ui/picker": "^0.14.4", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/projects/documentation/CHANGELOG.md b/projects/documentation/CHANGELOG.md index e745d806ac5..086570bd1df 100644 --- a/projects/documentation/CHANGELOG.md +++ b/projects/documentation/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.35](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.34...documentation@0.1.35) (2022-09-13) + +**Note:** Version bump only for package documentation + ## [0.1.34](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.33...documentation@0.1.34) (2022-09-06) **Note:** Version bump only for package documentation diff --git a/projects/documentation/package.json b/projects/documentation/package.json index 7c501434cd1..193299e8d66 100644 --- a/projects/documentation/package.json +++ b/projects/documentation/package.json @@ -1,6 +1,6 @@ { "name": "documentation", - "version": "0.1.34", + "version": "0.1.35", "private": true, "description": "The documentation site for Spectrum Web Components", "license": "Apache-2.0", @@ -25,7 +25,7 @@ "watch:serve": "wds --root-dir=dist --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.3", + "@iliad-ui/bundle": "^0.27.4", "@spectrum-css/table": "^4.0.5" }, "devDependencies": { diff --git a/projects/example-project-rollup/CHANGELOG.md b/projects/example-project-rollup/CHANGELOG.md index 3e3430e9e32..23108227c3c 100644 --- a/projects/example-project-rollup/CHANGELOG.md +++ b/projects/example-project-rollup/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.4](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.3...example-project-rollup@0.5.4) (2022-09-13) + +**Note:** Version bump only for package example-project-rollup + ## [0.5.3](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.2...example-project-rollup@0.5.3) (2022-09-06) **Note:** Version bump only for package example-project-rollup diff --git a/projects/example-project-rollup/package.json b/projects/example-project-rollup/package.json index 3590d80a102..b597f66a535 100644 --- a/projects/example-project-rollup/package.json +++ b/projects/example-project-rollup/package.json @@ -1,6 +1,6 @@ { "name": "example-project-rollup", - "version": "0.5.3", + "version": "0.5.4", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with rollup.", "license": "Apache-2.0", @@ -20,13 +20,13 @@ "tsc:watch": "tsc --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.3", + "@iliad-ui/bundle": "^0.27.4", "@iliad-ui/button": "^0.23.2", "@iliad-ui/field-label": "^0.10.2", - "@iliad-ui/icons": "^0.21.0", - "@iliad-ui/icons-editor": "^0.10.0", + "@iliad-ui/icons": "^0.22.0", + "@iliad-ui/icons-editor": "^0.11.0", "@iliad-ui/menu": "^0.17.2", - "@iliad-ui/picker": "^0.14.3", + "@iliad-ui/picker": "^0.14.4", "@iliad-ui/styles": "^0.17.2" }, "devDependencies": { diff --git a/projects/example-project-webpack/CHANGELOG.md b/projects/example-project-webpack/CHANGELOG.md index 7f63f1a3ecc..32353e4285b 100644 --- a/projects/example-project-webpack/CHANGELOG.md +++ b/projects/example-project-webpack/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.6.4](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.3...example-project-webpack@1.6.4) (2022-09-13) + +**Note:** Version bump only for package example-project-webpack + ## [1.6.3](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.2...example-project-webpack@1.6.3) (2022-09-06) **Note:** Version bump only for package example-project-webpack diff --git a/projects/example-project-webpack/package.json b/projects/example-project-webpack/package.json index 42bfafa1bda..8c3b57ab1d7 100644 --- a/projects/example-project-webpack/package.json +++ b/projects/example-project-webpack/package.json @@ -1,6 +1,6 @@ { "name": "example-project-webpack", - "version": "1.6.3", + "version": "1.6.4", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with webpack.", "license": "Apache-2.0", @@ -15,8 +15,8 @@ "@iliad-ui/button": "^0.23.2", "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/menu": "^0.17.2", - "@iliad-ui/picker": "^0.14.3", - "@iliad-ui/react": "^0.20.0", + "@iliad-ui/picker": "^0.14.4", + "@iliad-ui/react": "^0.20.1", "@iliad-ui/styles": "^0.17.2", "lit": "^2.0.0" }, diff --git a/projects/story-decorator/CHANGELOG.md b/projects/story-decorator/CHANGELOG.md index 6b82dda19d9..8b40634d562 100644 --- a/projects/story-decorator/CHANGELOG.md +++ b/projects/story-decorator/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.10.3...@iliad-ui/story-decorator@0.10.4) (2022-09-13) + +**Note:** Version bump only for package @iliad-ui/story-decorator + ## [0.10.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.10.2...@iliad-ui/story-decorator@0.10.3) (2022-09-06) **Note:** Version bump only for package @iliad-ui/story-decorator diff --git a/projects/story-decorator/package.json b/projects/story-decorator/package.json index 1a121ca943c..b4b6beed103 100644 --- a/projects/story-decorator/package.json +++ b/projects/story-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/story-decorator", - "version": "0.10.3", + "version": "0.10.4", "publishConfig": { "access": "public" }, @@ -49,7 +49,7 @@ "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/menu": "^0.17.2", "@iliad-ui/overlay": "^0.18.2", - "@iliad-ui/picker": "^0.14.3", + "@iliad-ui/picker": "^0.14.4", "@iliad-ui/switch": "^0.12.2", "@iliad-ui/theme": "^0.15.2", "tslib": "^2.0.0" diff --git a/projects/vrt-compare/CHANGELOG.md b/projects/vrt-compare/CHANGELOG.md index 81dfcd5dcbf..a107ee0e298 100644 --- a/projects/vrt-compare/CHANGELOG.md +++ b/projects/vrt-compare/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.7.3...@iliad-ui/vrt-compare@0.7.4) (2022-09-13) + +**Note:** Version bump only for package @iliad-ui/vrt-compare + ## [0.7.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.7.2...@iliad-ui/vrt-compare@0.7.3) (2022-09-06) **Note:** Version bump only for package @iliad-ui/vrt-compare diff --git a/projects/vrt-compare/package.json b/projects/vrt-compare/package.json index 728f3e46f49..e2e55385933 100644 --- a/projects/vrt-compare/package.json +++ b/projects/vrt-compare/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/vrt-compare", - "version": "0.7.3", + "version": "0.7.4", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-bar": "^0.7.3", + "@iliad-ui/action-bar": "^0.7.4", "@iliad-ui/action-button": "^0.14.2", "@iliad-ui/action-group": "^0.12.2", "@iliad-ui/base": "^0.12.2", From 022905b02104a1637308e5cd767a29784104d62f Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Thu, 20 Oct 2022 10:49:54 +0800 Subject: [PATCH 09/28] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DtreeItem?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=A4=A7=E5=86=99=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/tree/src/tree-item.css | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/tree/src/tree-item.css b/packages/tree/src/tree-item.css index ca9cfad9f66..1798dd7b233 100644 --- a/packages/tree/src/tree-item.css +++ b/packages/tree/src/tree-item.css @@ -149,7 +149,6 @@ governing permissions and limitations under the License. margin: 0; position: relative; /* .spectrum-Tree-itemHeader */ text-overflow: ellipsis; - text-transform: uppercase; width: 100%; min-height: calc( var(--spectrum-tree-item-height) - 2 * From 8d98112b0885cb29f7b2a1e0f03d5cdf266952fc Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Wed, 26 Oct 2022 14:52:14 +0800 Subject: [PATCH 10/28] =?UTF-8?q?feat:=20tree-item=E5=A2=9E=E5=8A=A0font-w?= =?UTF-8?q?eight=E5=8F=98=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/tree/src/tree-item.css | 2 +- packages/tree/src/vars.css | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/tree/src/tree-item.css b/packages/tree/src/tree-item.css index 1798dd7b233..003e25663eb 100644 --- a/packages/tree/src/tree-item.css +++ b/packages/tree/src/tree-item.css @@ -142,7 +142,7 @@ governing permissions and limitations under the License. var(--spectrum-global-dimension-font-size-50) ); color: inherit; - font-weight: 500; + font-weight: var(--spectrum-tree-item-title-font-weight); justify-content: flex-start; letter-spacing: var(--spectrum-tree-item-title-tracking-actual); line-height: var(--spectrum-tree-item-line-height); diff --git a/packages/tree/src/vars.css b/packages/tree/src/vars.css index 1fdd3e1f25c..36fea990c1b 100644 --- a/packages/tree/src/vars.css +++ b/packages/tree/src/vars.css @@ -48,6 +48,7 @@ governing permissions and limitations under the License. --spectrum-alias-border-size-thick ); --spectrum-tree-item-title-text-size: var(--spectrum-alias-font-size-m); + --spectrum-tree-item-title-font-weight: var(--spectrum-alias-font-weight-m); --spectrum-tree-icon-color: var(--spectrum-global-color-gray-700); --spectrum-tree-text-color: var(--spectrum-alias-text-color-secondary); --spectrum-tree-item-background-color: var( From 179619dbaaa0879a5c222266be698b82b1de7b09 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Wed, 26 Oct 2022 14:56:10 +0800 Subject: [PATCH 11/28] chore: release new versions - @iliad-ui/bundle@0.27.5 - @iliad-ui/react@0.20.2 - @iliad-ui/tree@0.8.0 - documentation@0.1.36 - example-project-rollup@0.5.5 - example-project-webpack@1.6.5 --- packages/bundle/CHANGELOG.md | 4 ++++ packages/bundle/package.json | 4 ++-- packages/react/CHANGELOG.md | 4 ++++ packages/react/package.json | 4 ++-- packages/tree/CHANGELOG.md | 10 ++++++++++ packages/tree/package.json | 2 +- projects/documentation/CHANGELOG.md | 4 ++++ projects/documentation/package.json | 4 ++-- projects/example-project-rollup/CHANGELOG.md | 4 ++++ projects/example-project-rollup/package.json | 4 ++-- projects/example-project-webpack/CHANGELOG.md | 4 ++++ projects/example-project-webpack/package.json | 4 ++-- 12 files changed, 41 insertions(+), 11 deletions(-) diff --git a/packages/bundle/CHANGELOG.md b/packages/bundle/CHANGELOG.md index d46c8f970e0..0d7183ed0f6 100644 --- a/packages/bundle/CHANGELOG.md +++ b/packages/bundle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.27.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.4...@iliad-ui/bundle@0.27.5) (2022-10-26) + +**Note:** Version bump only for package @iliad-ui/bundle + ## [0.27.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.3...@iliad-ui/bundle@0.27.4) (2022-09-13) **Note:** Version bump only for package @iliad-ui/bundle diff --git a/packages/bundle/package.json b/packages/bundle/package.json index f8e07e4a03f..f96e6112f1d 100644 --- a/packages/bundle/package.json +++ b/packages/bundle/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/bundle", - "version": "0.27.4", + "version": "0.27.5", "publishConfig": { "access": "public" }, @@ -104,7 +104,7 @@ "@iliad-ui/tooltip": "^0.13.2", "@iliad-ui/top-nav": "^0.8.2", "@iliad-ui/tray": "^0.7.2", - "@iliad-ui/tree": "^0.7.2", + "@iliad-ui/tree": "^0.8.0", "@iliad-ui/underlay": "^0.11.2", "tslib": "^2.0.0" }, diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 4f608840856..68aeb241cbe 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.20.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.20.1...@iliad-ui/react@0.20.2) (2022-10-26) + +**Note:** Version bump only for package @iliad-ui/react + ## [0.20.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.20.0...@iliad-ui/react@0.20.1) (2022-09-13) **Note:** Version bump only for package @iliad-ui/react diff --git a/packages/react/package.json b/packages/react/package.json index 27baaa26f58..e96cfd04c27 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/react", - "version": "0.20.1", + "version": "0.20.2", "publishConfig": { "access": "public" }, @@ -42,7 +42,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/bundle": "^0.27.4", + "@iliad-ui/bundle": "^0.27.5", "@iliad-ui/icons": "^0.22.0", "@lit-labs/react": "^1.0.1", "@types/lodash": "^4.14.175", diff --git a/packages/tree/CHANGELOG.md b/packages/tree/CHANGELOG.md index 36e28e0d531..94ec8556ba1 100644 --- a/packages/tree/CHANGELOG.md +++ b/packages/tree/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.8.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tree@0.7.2...@iliad-ui/tree@0.8.0) (2022-10-26) + +### Bug Fixes + +- 修复 treeItem 自动大写问题 ([022905b](https://github.com/gaoding-inc/iliad-ui/commit/022905b02104a1637308e5cd767a29784104d62f)) + +### Features + +- tree-item 增加 font-weight 变量 ([8d98112](https://github.com/gaoding-inc/iliad-ui/commit/8d98112b0885cb29f7b2a1e0f03d5cdf266952fc)) + ## [0.7.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tree@0.7.1...@iliad-ui/tree@0.7.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/tree diff --git a/packages/tree/package.json b/packages/tree/package.json index c86e5d37a0c..d3f2fc7d156 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/tree", - "version": "0.7.2", + "version": "0.8.0", "publishConfig": { "access": "public" }, diff --git a/projects/documentation/CHANGELOG.md b/projects/documentation/CHANGELOG.md index 086570bd1df..9e3bf2cfbe0 100644 --- a/projects/documentation/CHANGELOG.md +++ b/projects/documentation/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.36](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.35...documentation@0.1.36) (2022-10-26) + +**Note:** Version bump only for package documentation + ## [0.1.35](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.34...documentation@0.1.35) (2022-09-13) **Note:** Version bump only for package documentation diff --git a/projects/documentation/package.json b/projects/documentation/package.json index 193299e8d66..5e6d6abe5a0 100644 --- a/projects/documentation/package.json +++ b/projects/documentation/package.json @@ -1,6 +1,6 @@ { "name": "documentation", - "version": "0.1.35", + "version": "0.1.36", "private": true, "description": "The documentation site for Spectrum Web Components", "license": "Apache-2.0", @@ -25,7 +25,7 @@ "watch:serve": "wds --root-dir=dist --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.4", + "@iliad-ui/bundle": "^0.27.5", "@spectrum-css/table": "^4.0.5" }, "devDependencies": { diff --git a/projects/example-project-rollup/CHANGELOG.md b/projects/example-project-rollup/CHANGELOG.md index 23108227c3c..ddd94a740d1 100644 --- a/projects/example-project-rollup/CHANGELOG.md +++ b/projects/example-project-rollup/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.5](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.4...example-project-rollup@0.5.5) (2022-10-26) + +**Note:** Version bump only for package example-project-rollup + ## [0.5.4](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.3...example-project-rollup@0.5.4) (2022-09-13) **Note:** Version bump only for package example-project-rollup diff --git a/projects/example-project-rollup/package.json b/projects/example-project-rollup/package.json index b597f66a535..3876c0cafb9 100644 --- a/projects/example-project-rollup/package.json +++ b/projects/example-project-rollup/package.json @@ -1,6 +1,6 @@ { "name": "example-project-rollup", - "version": "0.5.4", + "version": "0.5.5", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with rollup.", "license": "Apache-2.0", @@ -20,7 +20,7 @@ "tsc:watch": "tsc --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.4", + "@iliad-ui/bundle": "^0.27.5", "@iliad-ui/button": "^0.23.2", "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/icons": "^0.22.0", diff --git a/projects/example-project-webpack/CHANGELOG.md b/projects/example-project-webpack/CHANGELOG.md index 32353e4285b..92f0bec39e1 100644 --- a/projects/example-project-webpack/CHANGELOG.md +++ b/projects/example-project-webpack/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.6.5](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.4...example-project-webpack@1.6.5) (2022-10-26) + +**Note:** Version bump only for package example-project-webpack + ## [1.6.4](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.3...example-project-webpack@1.6.4) (2022-09-13) **Note:** Version bump only for package example-project-webpack diff --git a/projects/example-project-webpack/package.json b/projects/example-project-webpack/package.json index 8c3b57ab1d7..3cb033a0108 100644 --- a/projects/example-project-webpack/package.json +++ b/projects/example-project-webpack/package.json @@ -1,6 +1,6 @@ { "name": "example-project-webpack", - "version": "1.6.4", + "version": "1.6.5", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with webpack.", "license": "Apache-2.0", @@ -16,7 +16,7 @@ "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/menu": "^0.17.2", "@iliad-ui/picker": "^0.14.4", - "@iliad-ui/react": "^0.20.1", + "@iliad-ui/react": "^0.20.2", "@iliad-ui/styles": "^0.17.2", "lit": "^2.0.0" }, From fbebdae1435af2543068593cafa37f5fd956304c Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Wed, 26 Oct 2022 15:53:52 +0800 Subject: [PATCH 12/28] =?UTF-8?q?fix:=20treeitem=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/tree/src/TreeItem.ts | 30 ++++++++++++++------------- packages/tree/src/tree-item.css | 36 ++++++++++++++++----------------- packages/tree/src/vars.css | 3 --- 3 files changed, 34 insertions(+), 35 deletions(-) diff --git a/packages/tree/src/TreeItem.ts b/packages/tree/src/TreeItem.ts index 30cb7c6bce2..2ac9788bf59 100644 --- a/packages/tree/src/TreeItem.ts +++ b/packages/tree/src/TreeItem.ts @@ -167,20 +167,21 @@ export class TreeItem extends SpectrumElement { ); return html`

- +
+ +
+

diff --git a/packages/tree/src/tree-item.css b/packages/tree/src/tree-item.css index 003e25663eb..9368fc3c2e7 100644 --- a/packages/tree/src/tree-item.css +++ b/packages/tree/src/tree-item.css @@ -38,20 +38,6 @@ governing permissions and limitations under the License. 0 ); /* [dir=rtl] .spectrum-Tree-itemIndicator */ } -:host([dir='ltr']) { - padding-left: var(--spectrum-tree-item-offset-padding-x); - /* padding-left: calc( - var(--spectrum-tree-item-offset-padding-x) + - var(--spectrum-tree-item-header-arrow-gap) - ); */ -} -:host([dir='rtl']) { - padding-left: var(--spectrum-tree-item-offset-padding-x); - /* padding-right: calc( - var(--spectrum-tree-item-offset-padding-x) + - var(--spectrum-tree-item-header-arrow-gap) - ); */ -} .indicator { --indicator-width: calc( var(--spectrum-tree-icon-width) + 2 * var(--spectrum-tree-icon-padding) @@ -81,6 +67,9 @@ governing permissions and limitations under the License. solid transparent; /* .spectrum-Tree-item:first-of-type */ } #heading { + display: flex; + align-items: center; + justify-content: flex-start; box-sizing: border-box; margin: 0; /* .spectrum-Tree-itemHeading */ position: relative; @@ -90,7 +79,11 @@ governing permissions and limitations under the License. margin-bottom: var(--spectrum-tree-item-margin-y); overflow: hidden; } -:host([dir='ltr']) #header { +#headerContainer { + flex: 1; + overflow: hidden; +} +:host([dir='ltr']) #heading { --indicator-width: calc( var(--spectrum-tree-icon-width) + 2 * var(--spectrum-tree-icon-padding) ); @@ -102,10 +95,13 @@ governing permissions and limitations under the License. var(--spectrum-global-dimension-size-100) ) ); - padding-left: var(--padding-left); + padding-right: var(--spectrum-tree-item-padding-right); } -:host([dir='rtl']) #header { +:host([dir='ltr']) #header { + padding-left: var(--padding-left); +} +:host([dir='rtl']) #heading { --indicator-width: calc( var(--spectrum-tree-icon-width) + 2 * var(--spectrum-tree-icon-padding) ); @@ -117,9 +113,12 @@ governing permissions and limitations under the License. var(--spectrum-global-dimension-size-100) ) ); - padding-left: var(--spectrum-tree-item-padding-right); + padding-right: var(--padding-right); } +:host([dir='rtl']) #header { + padding-left: var(--spectrum-tree-item-padding-right); +} :host([dir='ltr']) #header { text-align: left; @@ -136,6 +135,7 @@ governing permissions and limitations under the License. box-sizing: border-box; cursor: pointer; display: flex; + flex: 1; font-family: inherit; font-size: var( --spectrum-tree-item-title-text-size, diff --git a/packages/tree/src/vars.css b/packages/tree/src/vars.css index 36fea990c1b..fb7c157540a 100644 --- a/packages/tree/src/vars.css +++ b/packages/tree/src/vars.css @@ -33,9 +33,6 @@ governing permissions and limitations under the License. var(--spectrum-tree-item-offset) ); --spectrum-tree-item-margin-y: var(--spectrum-global-dimension-size-0); - --spectrum-tree-item-offset-padding-x: var( - --spectrum-global-dimension-size-0 - ); --spectrum-tree-item-header-arrow-gap: var( --spectrum-global-dimension-size-100 ); From 6c463016db44e7ddbe28acbbdde6625d866be840 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Wed, 26 Oct 2022 15:56:34 +0800 Subject: [PATCH 13/28] chore: release new versions - @iliad-ui/bundle@0.27.6 - @iliad-ui/react@0.20.3 - @iliad-ui/tree@0.8.1 - documentation@0.1.37 - example-project-rollup@0.5.6 - example-project-webpack@1.6.6 --- packages/bundle/CHANGELOG.md | 4 ++++ packages/bundle/package.json | 4 ++-- packages/react/CHANGELOG.md | 4 ++++ packages/react/package.json | 4 ++-- packages/tree/CHANGELOG.md | 6 ++++++ packages/tree/package.json | 2 +- projects/documentation/CHANGELOG.md | 4 ++++ projects/documentation/package.json | 4 ++-- projects/example-project-rollup/CHANGELOG.md | 4 ++++ projects/example-project-rollup/package.json | 4 ++-- projects/example-project-webpack/CHANGELOG.md | 4 ++++ projects/example-project-webpack/package.json | 4 ++-- 12 files changed, 37 insertions(+), 11 deletions(-) diff --git a/packages/bundle/CHANGELOG.md b/packages/bundle/CHANGELOG.md index 0d7183ed0f6..c8a50668432 100644 --- a/packages/bundle/CHANGELOG.md +++ b/packages/bundle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.27.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.5...@iliad-ui/bundle@0.27.6) (2022-10-26) + +**Note:** Version bump only for package @iliad-ui/bundle + ## [0.27.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.4...@iliad-ui/bundle@0.27.5) (2022-10-26) **Note:** Version bump only for package @iliad-ui/bundle diff --git a/packages/bundle/package.json b/packages/bundle/package.json index f96e6112f1d..81b8dd3d7d8 100644 --- a/packages/bundle/package.json +++ b/packages/bundle/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/bundle", - "version": "0.27.5", + "version": "0.27.6", "publishConfig": { "access": "public" }, @@ -104,7 +104,7 @@ "@iliad-ui/tooltip": "^0.13.2", "@iliad-ui/top-nav": "^0.8.2", "@iliad-ui/tray": "^0.7.2", - "@iliad-ui/tree": "^0.8.0", + "@iliad-ui/tree": "^0.8.1", "@iliad-ui/underlay": "^0.11.2", "tslib": "^2.0.0" }, diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 68aeb241cbe..a0cf8a65819 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.20.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.20.2...@iliad-ui/react@0.20.3) (2022-10-26) + +**Note:** Version bump only for package @iliad-ui/react + ## [0.20.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.20.1...@iliad-ui/react@0.20.2) (2022-10-26) **Note:** Version bump only for package @iliad-ui/react diff --git a/packages/react/package.json b/packages/react/package.json index e96cfd04c27..3e32d40c681 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/react", - "version": "0.20.2", + "version": "0.20.3", "publishConfig": { "access": "public" }, @@ -42,7 +42,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/bundle": "^0.27.5", + "@iliad-ui/bundle": "^0.27.6", "@iliad-ui/icons": "^0.22.0", "@lit-labs/react": "^1.0.1", "@types/lodash": "^4.14.175", diff --git a/packages/tree/CHANGELOG.md b/packages/tree/CHANGELOG.md index 94ec8556ba1..82d894f0692 100644 --- a/packages/tree/CHANGELOG.md +++ b/packages/tree/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tree@0.8.0...@iliad-ui/tree@0.8.1) (2022-10-26) + +### Bug Fixes + +- treeitem 更新 ([fbebdae](https://github.com/gaoding-inc/iliad-ui/commit/fbebdae1435af2543068593cafa37f5fd956304c)) + # [0.8.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tree@0.7.2...@iliad-ui/tree@0.8.0) (2022-10-26) ### Bug Fixes diff --git a/packages/tree/package.json b/packages/tree/package.json index d3f2fc7d156..a6da7a42939 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/tree", - "version": "0.8.0", + "version": "0.8.1", "publishConfig": { "access": "public" }, diff --git a/projects/documentation/CHANGELOG.md b/projects/documentation/CHANGELOG.md index 9e3bf2cfbe0..ef84fa3fac5 100644 --- a/projects/documentation/CHANGELOG.md +++ b/projects/documentation/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.37](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.36...documentation@0.1.37) (2022-10-26) + +**Note:** Version bump only for package documentation + ## [0.1.36](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.35...documentation@0.1.36) (2022-10-26) **Note:** Version bump only for package documentation diff --git a/projects/documentation/package.json b/projects/documentation/package.json index 5e6d6abe5a0..3a1be3ba6e8 100644 --- a/projects/documentation/package.json +++ b/projects/documentation/package.json @@ -1,6 +1,6 @@ { "name": "documentation", - "version": "0.1.36", + "version": "0.1.37", "private": true, "description": "The documentation site for Spectrum Web Components", "license": "Apache-2.0", @@ -25,7 +25,7 @@ "watch:serve": "wds --root-dir=dist --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.5", + "@iliad-ui/bundle": "^0.27.6", "@spectrum-css/table": "^4.0.5" }, "devDependencies": { diff --git a/projects/example-project-rollup/CHANGELOG.md b/projects/example-project-rollup/CHANGELOG.md index ddd94a740d1..aec97486c65 100644 --- a/projects/example-project-rollup/CHANGELOG.md +++ b/projects/example-project-rollup/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.6](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.5...example-project-rollup@0.5.6) (2022-10-26) + +**Note:** Version bump only for package example-project-rollup + ## [0.5.5](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.4...example-project-rollup@0.5.5) (2022-10-26) **Note:** Version bump only for package example-project-rollup diff --git a/projects/example-project-rollup/package.json b/projects/example-project-rollup/package.json index 3876c0cafb9..3211eaaa4fe 100644 --- a/projects/example-project-rollup/package.json +++ b/projects/example-project-rollup/package.json @@ -1,6 +1,6 @@ { "name": "example-project-rollup", - "version": "0.5.5", + "version": "0.5.6", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with rollup.", "license": "Apache-2.0", @@ -20,7 +20,7 @@ "tsc:watch": "tsc --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.5", + "@iliad-ui/bundle": "^0.27.6", "@iliad-ui/button": "^0.23.2", "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/icons": "^0.22.0", diff --git a/projects/example-project-webpack/CHANGELOG.md b/projects/example-project-webpack/CHANGELOG.md index 92f0bec39e1..6fef2361a26 100644 --- a/projects/example-project-webpack/CHANGELOG.md +++ b/projects/example-project-webpack/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.6.6](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.5...example-project-webpack@1.6.6) (2022-10-26) + +**Note:** Version bump only for package example-project-webpack + ## [1.6.5](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.4...example-project-webpack@1.6.5) (2022-10-26) **Note:** Version bump only for package example-project-webpack diff --git a/projects/example-project-webpack/package.json b/projects/example-project-webpack/package.json index 3cb033a0108..2fb253e1faf 100644 --- a/projects/example-project-webpack/package.json +++ b/projects/example-project-webpack/package.json @@ -1,6 +1,6 @@ { "name": "example-project-webpack", - "version": "1.6.5", + "version": "1.6.6", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with webpack.", "license": "Apache-2.0", @@ -16,7 +16,7 @@ "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/menu": "^0.17.2", "@iliad-ui/picker": "^0.14.4", - "@iliad-ui/react": "^0.20.2", + "@iliad-ui/react": "^0.20.3", "@iliad-ui/styles": "^0.17.2", "lit": "^2.0.0" }, From 63da3caa7627e746a44b3d7a363d4a11cc21bac6 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Thu, 10 Nov 2022 11:00:22 +0800 Subject: [PATCH 14/28] feat: icons update --- .../icons/sp-icon-editor-arrow-down-small.ts | 26 +++++++ .../icons/sp-icon-editor-arrow-right-small.ts | 26 +++++++ .../icons-editor/icons/sp-icon-editor-copy.ts | 23 ++++++ .../icons/sp-icon-editor-delete.ts | 23 ++++++ ...quad.ts => sp-icon-editor-easein-cubic.ts} | 6 +- ...nquad.ts => sp-icon-editor-easein-quad.ts} | 6 +- ...c.ts => sp-icon-editor-easeinout-cubic.ts} | 6 +- ...ubic.ts => sp-icon-editor-easeout-back.ts} | 6 +- ...ce.ts => sp-icon-editor-easeout-bounce.ts} | 6 +- ...bic.ts => sp-icon-editor-easeout-cubic.ts} | 6 +- ...c.ts => sp-icon-editor-easeout-elastic.ts} | 6 +- ...back.ts => sp-icon-editor-easeout-quad.ts} | 6 +- .../icons/sp-icon-editor-figma-static.ts | 23 ++++++ ...rrow-down.ts => sp-icon-editor-inspire.ts} | 6 +- .../icons/sp-icon-editor-locate.ts | 23 ++++++ .../icons/sp-icon-editor-publish.ts | 23 ++++++ .../icons/sp-icon-editor-share.ts | 23 ++++++ .../icons/sp-icon-editor-sketch-static.ts | 23 ++++++ .../icons-editor/icons/sp-icon-editor-tag.ts | 23 ++++++ .../src/elements/IconArrowDownSmall.ts | 27 +++++++ .../src/elements/IconArrowRightSmall.ts | 27 +++++++ .../{IconArrowDown.ts => IconCopy.ts} | 8 +- .../icons-editor/src/elements/IconDelete.ts | 27 +++++++ .../src/elements/IconEaseincubic.ts | 8 +- .../src/elements/IconEaseinoutcubic.ts | 8 +- .../src/elements/IconEaseinquad.ts | 8 +- .../src/elements/IconEaseoutback.ts | 8 +- .../src/elements/IconEaseoutbounce.ts | 8 +- .../src/elements/IconEaseoutcubic.ts | 8 +- .../src/elements/IconEaseoutelastic.ts | 8 +- .../src/elements/IconEaseoutquad.ts | 8 +- .../src/elements/IconFigmaStatic.ts | 27 +++++++ .../icons-editor/src/elements/IconInspire.ts | 27 +++++++ .../icons-editor/src/elements/IconLocate.ts | 27 +++++++ .../icons-editor/src/elements/IconPublish.ts | 27 +++++++ .../icons-editor/src/elements/IconShare.ts | 27 +++++++ .../src/elements/IconSketchStatic.ts | 27 +++++++ packages/icons-editor/src/elements/IconTag.ts | 27 +++++++ packages/icons-editor/src/icons.ts | 28 ++++--- packages/icons-editor/src/icons/Add.ts | 2 + packages/icons-editor/src/icons/Alert.ts | 2 + packages/icons-editor/src/icons/AlertFill.ts | 2 + .../src/icons/AlignArrangeHoriz.ts | 2 + .../src/icons/AlignArrangeVert.ts | 2 + .../icons-editor/src/icons/AlignBottom.ts | 2 + .../src/icons/AlignHorizCenters.ts | 2 + packages/icons-editor/src/icons/AlignLeft.ts | 2 + packages/icons-editor/src/icons/AlignRight.ts | 2 + packages/icons-editor/src/icons/AlignTop.ts | 2 + .../src/icons/AlignVertCenters.ts | 2 + packages/icons-editor/src/icons/Animation.ts | 77 +++++++++++++++++-- .../icons/{ArrowDown.ts => ArrowDownSmall.ts} | 4 +- packages/icons-editor/src/icons/ArrowLeft.ts | 2 + packages/icons-editor/src/icons/ArrowRight.ts | 4 +- .../icons-editor/src/icons/ArrowRightSmall.ts | 33 ++++++++ .../icons-editor/src/icons/ArrowTriangle.ts | 5 +- packages/icons-editor/src/icons/Backspace.ts | 2 + packages/icons-editor/src/icons/Check.ts | 2 + packages/icons-editor/src/icons/CheckFill.ts | 2 + packages/icons-editor/src/icons/Clear.ts | 2 + packages/icons-editor/src/icons/Close.ts | 2 + packages/icons-editor/src/icons/CloseFull.ts | 4 +- packages/icons-editor/src/icons/CloudDone.ts | 2 + packages/icons-editor/src/icons/CloudOff.ts | 2 + .../icons-editor/src/icons/Colorpicker.ts | 2 + packages/icons-editor/src/icons/Command.ts | 2 + packages/icons-editor/src/icons/Contacts.ts | 2 + packages/icons-editor/src/icons/Container.ts | 2 + packages/icons-editor/src/icons/Copy.ts | 33 ++++++++ packages/icons-editor/src/icons/Corner.ts | 2 + .../src/icons/CornerRadiusBottomLeft.ts | 2 + .../src/icons/CornerRadiusBottomRight.ts | 2 + .../src/icons/CornerRadiusTopLeft.ts | 2 + .../src/icons/CornerRadiusTopRight.ts | 2 + packages/icons-editor/src/icons/Crop.ts | 16 ++-- .../icons-editor/src/icons/DataBarchart.ts | 2 + packages/icons-editor/src/icons/Delete.ts | 37 +++++++++ packages/icons-editor/src/icons/Desktop.ts | 2 + .../icons-editor/src/icons/DirectionCenter.ts | 2 + .../icons-editor/src/icons/DirectionDown.ts | 2 + .../icons-editor/src/icons/DirectionLeft.ts | 2 + .../icons-editor/src/icons/DirectionRight.ts | 2 + .../icons-editor/src/icons/DirectionUp.ts | 2 + packages/icons-editor/src/icons/Display.ts | 5 +- packages/icons-editor/src/icons/Done.ts | 2 + packages/icons-editor/src/icons/DragHandle.ts | 4 +- packages/icons-editor/src/icons/Earth.ts | 2 + .../icons-editor/src/icons/Easeincubic.ts | 4 +- .../icons-editor/src/icons/Easeinoutcubic.ts | 4 +- packages/icons-editor/src/icons/Easeinquad.ts | 4 +- .../icons-editor/src/icons/Easeoutback.ts | 4 +- .../icons-editor/src/icons/Easeoutbounce.ts | 4 +- .../icons-editor/src/icons/Easeoutcubic.ts | 4 +- .../icons-editor/src/icons/Easeoutelastic.ts | 4 +- .../icons-editor/src/icons/Easeoutquad.ts | 4 +- packages/icons-editor/src/icons/Edit.ts | 4 +- packages/icons-editor/src/icons/Effect.ts | 3 + packages/icons-editor/src/icons/Event.ts | 4 +- packages/icons-editor/src/icons/Eye.ts | 2 + packages/icons-editor/src/icons/EyeDisplay.ts | 2 + packages/icons-editor/src/icons/EyeOff.ts | 2 + packages/icons-editor/src/icons/Figma.ts | 4 +- .../icons-editor/src/icons/FigmaStatic.ts | 59 ++++++++++++++ packages/icons-editor/src/icons/FileFolder.ts | 2 + .../icons-editor/src/icons/FileOutline.ts | 2 + packages/icons-editor/src/icons/Fixed.ts | 4 +- packages/icons-editor/src/icons/Focus.ts | 4 +- .../src/icons/FormatAlignBottom.ts | 2 + .../src/icons/FormatAlignMedium.ts | 2 + .../icons-editor/src/icons/FormatAlignTop.ts | 2 + .../icons-editor/src/icons/FormatCenter.ts | 2 + .../src/icons/FormatIndentDecrease.ts | 2 + .../src/icons/FormatIndentIncrease.ts | 4 +- .../icons-editor/src/icons/FormatJustified.ts | 2 + packages/icons-editor/src/icons/FormatLeft.ts | 2 + .../src/icons/FormatListBulleted.ts | 2 + .../src/icons/FormatListNumbered.ts | 3 + .../src/icons/FormatPacingLines.ts | 2 + .../icons-editor/src/icons/FormatRight.ts | 2 + .../src/icons/FormatSpacingLetter.ts | 2 + packages/icons-editor/src/icons/Global.ts | 2 + .../icons-editor/src/icons/GridOutline.ts | 2 + packages/icons-editor/src/icons/HeightFill.ts | 2 + .../icons-editor/src/icons/HeightFixed.ts | 2 + packages/icons-editor/src/icons/HeightHug.ts | 2 + packages/icons-editor/src/icons/Help.ts | 2 + packages/icons-editor/src/icons/HelpFill.ts | 2 + packages/icons-editor/src/icons/Home.ts | 2 + .../icons-editor/src/icons/HorizBottom.ts | 2 + .../icons-editor/src/icons/HorizCenters.ts | 2 + packages/icons-editor/src/icons/HorizTop.ts | 2 + packages/icons-editor/src/icons/Image.ts | 2 + packages/icons-editor/src/icons/Import.ts | 2 + packages/icons-editor/src/icons/Info.ts | 2 + packages/icons-editor/src/icons/InfoFill.ts | 2 + packages/icons-editor/src/icons/Inspire.ts | 33 ++++++++ packages/icons-editor/src/icons/LabelC.ts | 2 + .../src/icons/LabelClosebracket.ts | 2 + packages/icons-editor/src/icons/LabelD.ts | 2 + packages/icons-editor/src/icons/LabelG.ts | 2 + .../src/icons/LabelOpenbracket.ts | 2 + packages/icons-editor/src/icons/LabelV.ts | 2 + packages/icons-editor/src/icons/LabelX.ts | 2 + packages/icons-editor/src/icons/LabelY.ts | 2 + packages/icons-editor/src/icons/LabelZ.ts | 2 + packages/icons-editor/src/icons/Layers.ts | 2 + packages/icons-editor/src/icons/LayoutHorz.ts | 2 + .../icons-editor/src/icons/LayoutPageturn.ts | 2 + .../icons-editor/src/icons/LayoutSliding.ts | 2 + packages/icons-editor/src/icons/LayoutVert.ts | 2 + packages/icons-editor/src/icons/LayoutWrap.ts | 2 + packages/icons-editor/src/icons/Linear.ts | 2 + packages/icons-editor/src/icons/Link.ts | 2 + packages/icons-editor/src/icons/Loading.ts | 3 + .../icons-editor/src/icons/LoadingWhite.ts | 3 + packages/icons-editor/src/icons/Locate.ts | 33 ++++++++ packages/icons-editor/src/icons/Locked.ts | 2 + packages/icons-editor/src/icons/Materiel.ts | 4 +- packages/icons-editor/src/icons/Menu.ts | 2 + packages/icons-editor/src/icons/MoreHoriz.ts | 4 +- packages/icons-editor/src/icons/MouseClick.ts | 2 + packages/icons-editor/src/icons/MouseHover.ts | 2 + packages/icons-editor/src/icons/Move.ts | 2 + packages/icons-editor/src/icons/None.ts | 2 + packages/icons-editor/src/icons/OpenFull.ts | 4 +- packages/icons-editor/src/icons/OpenInNew.ts | 2 + packages/icons-editor/src/icons/Option.ts | 2 + packages/icons-editor/src/icons/Padding.ts | 2 + .../icons-editor/src/icons/PaddingBottom.ts | 2 + .../src/icons/PaddingIndependent.ts | 2 + .../icons-editor/src/icons/PaddingLeft.ts | 2 + .../icons-editor/src/icons/PaddingRight.ts | 2 + packages/icons-editor/src/icons/PaddingTop.ts | 2 + packages/icons-editor/src/icons/PageFooter.ts | 2 + packages/icons-editor/src/icons/PageHeader.ts | 2 + packages/icons-editor/src/icons/Pages.ts | 2 + packages/icons-editor/src/icons/Paragraph.ts | 2 + packages/icons-editor/src/icons/Play.ts | 2 + packages/icons-editor/src/icons/Publish.ts | 33 ++++++++ packages/icons-editor/src/icons/QrCode.ts | 2 + .../src/icons/RadioButtonUnchecked.ts | 3 + packages/icons-editor/src/icons/Redo.ts | 2 + packages/icons-editor/src/icons/Remove.ts | 4 +- packages/icons-editor/src/icons/RotateLeft.ts | 2 + packages/icons-editor/src/icons/Scale.ts | 2 + packages/icons-editor/src/icons/Scroll.ts | 2 + packages/icons-editor/src/icons/Section.ts | 4 +- packages/icons-editor/src/icons/Settings.ts | 2 + packages/icons-editor/src/icons/Share.ts | 33 ++++++++ packages/icons-editor/src/icons/Shift.ts | 2 + .../icons-editor/src/icons/SketchStatic.ts | 58 ++++++++++++++ packages/icons-editor/src/icons/Skew.ts | 2 + .../icons-editor/src/icons/SliderInvisible.ts | 2 + packages/icons-editor/src/icons/Smartphone.ts | 2 + .../icons-editor/src/icons/SpacingHoriz.ts | 2 + .../icons-editor/src/icons/SpacingVert.ts | 2 + packages/icons-editor/src/icons/Star.ts | 2 + packages/icons-editor/src/icons/Stop.ts | 2 + packages/icons-editor/src/icons/StopCircle.ts | 2 + packages/icons-editor/src/icons/Style.ts | 2 + packages/icons-editor/src/icons/TabletMac.ts | 2 + packages/icons-editor/src/icons/Tag.ts | 33 ++++++++ packages/icons-editor/src/icons/Text.ts | 2 + packages/icons-editor/src/icons/TextBold.ts | 2 + .../icons-editor/src/icons/TextDeleteline.ts | 2 + packages/icons-editor/src/icons/TextItaly.ts | 2 + packages/icons-editor/src/icons/TextScale.ts | 2 + .../icons-editor/src/icons/TextUnderline.ts | 2 + packages/icons-editor/src/icons/Theme.ts | 3 + packages/icons-editor/src/icons/Time.ts | 2 + packages/icons-editor/src/icons/Trigger.ts | 5 +- packages/icons-editor/src/icons/Tune.ts | 2 + packages/icons-editor/src/icons/Undo.ts | 2 + packages/icons-editor/src/icons/Unit.ts | 3 + packages/icons-editor/src/icons/Unlocked.ts | 2 + .../icons-editor/src/icons/VertCenters.ts | 2 + packages/icons-editor/src/icons/VertLeft.ts | 2 + packages/icons-editor/src/icons/VertRight.ts | 2 + packages/icons-editor/src/icons/Video.ts | 2 + packages/icons-editor/src/icons/WidthFill.ts | 2 + packages/icons-editor/src/icons/WidthFixed.ts | 2 + packages/icons-editor/src/icons/WidthHug.ts | 2 + packages/icons-editor/src/icons/Wrap.ts | 2 + packages/icons-editor/src/svg/Add.svg | 4 +- packages/icons-editor/src/svg/Alert.svg | 4 +- packages/icons-editor/src/svg/AlertFill.svg | 4 +- .../src/svg/AlignArrangeHoriz.svg | 4 +- .../icons-editor/src/svg/AlignArrangeVert.svg | 4 +- packages/icons-editor/src/svg/AlignBottom.svg | 4 +- .../src/svg/AlignHorizCenters.svg | 4 +- packages/icons-editor/src/svg/AlignLeft.svg | 4 +- packages/icons-editor/src/svg/AlignRight.svg | 4 +- packages/icons-editor/src/svg/AlignTop.svg | 4 +- .../icons-editor/src/svg/AlignVertCenters.svg | 4 +- packages/icons-editor/src/svg/Animation.svg | 26 ++++++- .../icons-editor/src/svg/ArrowDownSmall.svg | 3 + packages/icons-editor/src/svg/ArrowLeft.svg | 4 +- packages/icons-editor/src/svg/ArrowRight.svg | 4 +- .../icons-editor/src/svg/ArrowRightSmall.svg | 3 + .../icons-editor/src/svg/ArrowTriangle.svg | 6 +- packages/icons-editor/src/svg/Backspace.svg | 4 +- packages/icons-editor/src/svg/Check.svg | 4 +- packages/icons-editor/src/svg/CheckFill.svg | 4 +- packages/icons-editor/src/svg/Clear.svg | 4 +- packages/icons-editor/src/svg/CloseFull.svg | 6 +- packages/icons-editor/src/svg/CloudDone.svg | 4 +- packages/icons-editor/src/svg/CloudOff.svg | 4 +- packages/icons-editor/src/svg/Colorpicker.svg | 4 +- packages/icons-editor/src/svg/Command.svg | 4 +- packages/icons-editor/src/svg/Contacts.svg | 4 +- packages/icons-editor/src/svg/Container.svg | 4 +- packages/icons-editor/src/svg/Copy.svg | 3 + packages/icons-editor/src/svg/Corner.svg | 4 +- .../src/svg/CornerRadiusBottomLeft.svg | 4 +- .../src/svg/CornerRadiusBottomRight.svg | 4 +- .../src/svg/CornerRadiusTopLeft.svg | 4 +- .../src/svg/CornerRadiusTopRight.svg | 4 +- packages/icons-editor/src/svg/Crop.svg | 6 +- .../icons-editor/src/svg/DataBarchart.svg | 4 +- packages/icons-editor/src/svg/Delete.svg | 4 + packages/icons-editor/src/svg/Desktop.svg | 4 +- .../icons-editor/src/svg/DirectionCenter.svg | 4 +- .../icons-editor/src/svg/DirectionDown.svg | 4 +- .../icons-editor/src/svg/DirectionLeft.svg | 4 +- .../icons-editor/src/svg/DirectionRight.svg | 4 +- packages/icons-editor/src/svg/DirectionUp.svg | 4 +- packages/icons-editor/src/svg/Display.svg | 6 +- packages/icons-editor/src/svg/Done.svg | 4 +- packages/icons-editor/src/svg/DragHandle.svg | 6 +- packages/icons-editor/src/svg/Earth.svg | 4 +- packages/icons-editor/src/svg/Easeincubic.svg | 4 +- .../icons-editor/src/svg/Easeinoutcubic.svg | 4 +- packages/icons-editor/src/svg/Easeinquad.svg | 4 +- packages/icons-editor/src/svg/Easeoutback.svg | 4 +- .../icons-editor/src/svg/Easeoutbounce.svg | 4 +- .../icons-editor/src/svg/Easeoutcubic.svg | 4 +- .../icons-editor/src/svg/Easeoutelastic.svg | 4 +- packages/icons-editor/src/svg/Easeoutquad.svg | 4 +- packages/icons-editor/src/svg/Edit.svg | 6 +- packages/icons-editor/src/svg/Effect.svg | 6 +- packages/icons-editor/src/svg/Event.svg | 6 +- packages/icons-editor/src/svg/Eye.svg | 4 +- packages/icons-editor/src/svg/EyeDisplay.svg | 4 +- packages/icons-editor/src/svg/EyeOff.svg | 4 +- packages/icons-editor/src/svg/Figma.svg | 4 +- packages/icons-editor/src/svg/FigmaStatic.svg | 14 ++++ packages/icons-editor/src/svg/FileFolder.svg | 4 +- packages/icons-editor/src/svg/FileOutline.svg | 4 +- packages/icons-editor/src/svg/Fixed.svg | 6 +- packages/icons-editor/src/svg/Focus.svg | 4 +- .../src/svg/FormatAlignBottom.svg | 4 +- .../src/svg/FormatAlignMedium.svg | 4 +- .../icons-editor/src/svg/FormatAlignTop.svg | 4 +- .../icons-editor/src/svg/FormatCenter.svg | 4 +- .../src/svg/FormatIndentDecrease.svg | 4 +- .../src/svg/FormatIndentIncrease.svg | 6 +- .../icons-editor/src/svg/FormatJustified.svg | 4 +- packages/icons-editor/src/svg/FormatLeft.svg | 4 +- .../src/svg/FormatListBulleted.svg | 4 +- .../src/svg/FormatListNumbered.svg | 6 +- .../src/svg/FormatPacingLines.svg | 4 +- packages/icons-editor/src/svg/FormatRight.svg | 4 +- .../src/svg/FormatSpacingLetter.svg | 4 +- packages/icons-editor/src/svg/Global.svg | 4 +- packages/icons-editor/src/svg/GridOutline.svg | 4 +- packages/icons-editor/src/svg/HeightFill.svg | 4 +- packages/icons-editor/src/svg/HeightFixed.svg | 4 +- packages/icons-editor/src/svg/HeightHug.svg | 4 +- packages/icons-editor/src/svg/Help.svg | 4 +- packages/icons-editor/src/svg/HelpFill.svg | 4 +- packages/icons-editor/src/svg/Home.svg | 4 +- packages/icons-editor/src/svg/HorizBottom.svg | 4 +- .../icons-editor/src/svg/HorizCenters.svg | 4 +- packages/icons-editor/src/svg/HorizTop.svg | 4 +- packages/icons-editor/src/svg/Image.svg | 4 +- packages/icons-editor/src/svg/Import.svg | 4 +- packages/icons-editor/src/svg/Info.svg | 4 +- packages/icons-editor/src/svg/InfoFill.svg | 4 +- packages/icons-editor/src/svg/Inspire.svg | 3 + packages/icons-editor/src/svg/LabelC.svg | 4 +- .../src/svg/LabelClosebracket.svg | 4 +- packages/icons-editor/src/svg/LabelD.svg | 4 +- packages/icons-editor/src/svg/LabelG.svg | 4 +- .../icons-editor/src/svg/LabelOpenbracket.svg | 4 +- packages/icons-editor/src/svg/LabelV.svg | 4 +- packages/icons-editor/src/svg/LabelX.svg | 4 +- packages/icons-editor/src/svg/LabelY.svg | 4 +- packages/icons-editor/src/svg/LabelZ.svg | 4 +- packages/icons-editor/src/svg/Layers.svg | 4 +- packages/icons-editor/src/svg/LayoutHorz.svg | 4 +- .../icons-editor/src/svg/LayoutPageturn.svg | 4 +- .../icons-editor/src/svg/LayoutSliding.svg | 4 +- packages/icons-editor/src/svg/LayoutVert.svg | 4 +- packages/icons-editor/src/svg/LayoutWrap.svg | 4 +- packages/icons-editor/src/svg/Linear.svg | 4 +- packages/icons-editor/src/svg/Link.svg | 4 +- packages/icons-editor/src/svg/Loading.svg | 6 +- .../icons-editor/src/svg/LoadingWhite.svg | 6 +- packages/icons-editor/src/svg/Locate.svg | 3 + packages/icons-editor/src/svg/Locked.svg | 4 +- packages/icons-editor/src/svg/Materiel.svg | 6 +- packages/icons-editor/src/svg/Menu.svg | 4 +- packages/icons-editor/src/svg/MoreHoriz.svg | 6 +- packages/icons-editor/src/svg/MouseClick.svg | 4 +- packages/icons-editor/src/svg/MouseHover.svg | 4 +- packages/icons-editor/src/svg/Move.svg | 4 +- packages/icons-editor/src/svg/None.svg | 4 +- packages/icons-editor/src/svg/OpenFull.svg | 6 +- packages/icons-editor/src/svg/OpenInNew.svg | 4 +- packages/icons-editor/src/svg/Option.svg | 4 +- packages/icons-editor/src/svg/Padding.svg | 4 +- .../icons-editor/src/svg/PaddingBottom.svg | 4 +- .../src/svg/PaddingIndependent.svg | 4 +- packages/icons-editor/src/svg/PaddingLeft.svg | 4 +- .../icons-editor/src/svg/PaddingRight.svg | 4 +- packages/icons-editor/src/svg/PaddingTop.svg | 4 +- packages/icons-editor/src/svg/PageFooter.svg | 4 +- packages/icons-editor/src/svg/PageHeader.svg | 4 +- packages/icons-editor/src/svg/Pages.svg | 4 +- packages/icons-editor/src/svg/Paragraph.svg | 4 +- packages/icons-editor/src/svg/Play.svg | 4 +- packages/icons-editor/src/svg/Publish.svg | 3 + packages/icons-editor/src/svg/QrCode.svg | 4 +- .../src/svg/RadioButtonUnchecked.svg | 6 +- packages/icons-editor/src/svg/Redo.svg | 4 +- packages/icons-editor/src/svg/Remove.svg | 6 +- packages/icons-editor/src/svg/RotateLeft.svg | 4 +- packages/icons-editor/src/svg/Scale.svg | 4 +- packages/icons-editor/src/svg/Scroll.svg | 4 +- packages/icons-editor/src/svg/Section.svg | 6 +- packages/icons-editor/src/svg/Settings.svg | 4 +- packages/icons-editor/src/svg/Share.svg | 3 + packages/icons-editor/src/svg/Shift.svg | 4 +- .../icons-editor/src/svg/SketchStatic.svg | 15 ++++ packages/icons-editor/src/svg/Skew.svg | 4 +- .../icons-editor/src/svg/SliderInvisible.svg | 4 +- packages/icons-editor/src/svg/Smartphone.svg | 4 +- .../icons-editor/src/svg/SpacingHoriz.svg | 4 +- packages/icons-editor/src/svg/SpacingVert.svg | 4 +- packages/icons-editor/src/svg/Star.svg | 4 +- packages/icons-editor/src/svg/Stop.svg | 4 +- packages/icons-editor/src/svg/StopCircle.svg | 4 +- packages/icons-editor/src/svg/Style.svg | 4 +- packages/icons-editor/src/svg/TabletMac.svg | 4 +- packages/icons-editor/src/svg/Tag.svg | 3 + packages/icons-editor/src/svg/Text.svg | 4 +- packages/icons-editor/src/svg/TextBold.svg | 4 +- .../icons-editor/src/svg/TextDeleteline.svg | 4 +- packages/icons-editor/src/svg/TextItaly.svg | 4 +- packages/icons-editor/src/svg/TextScale.svg | 4 +- .../icons-editor/src/svg/TextUnderline.svg | 4 +- packages/icons-editor/src/svg/Theme.svg | 6 +- packages/icons-editor/src/svg/Time.svg | 4 +- packages/icons-editor/src/svg/Trigger.svg | 6 +- packages/icons-editor/src/svg/Tune.svg | 4 +- packages/icons-editor/src/svg/Undo.svg | 4 +- packages/icons-editor/src/svg/Unit.svg | 6 +- packages/icons-editor/src/svg/Unlocked.svg | 4 +- packages/icons-editor/src/svg/VertCenters.svg | 4 +- packages/icons-editor/src/svg/VertLeft.svg | 4 +- packages/icons-editor/src/svg/VertRight.svg | 4 +- packages/icons-editor/src/svg/Video.svg | 4 +- packages/icons-editor/src/svg/WidthFill.svg | 4 +- packages/icons-editor/src/svg/WidthFixed.svg | 4 +- packages/icons-editor/src/svg/WidthHug.svg | 4 +- packages/icons-editor/src/svg/Wrap.svg | 4 +- packages/icons-editor/src/svg/close.svg | 4 +- packages/icons/src/icons-editor.svg.ts | 2 +- 408 files changed, 1875 insertions(+), 486 deletions(-) create mode 100644 packages/icons-editor/icons/sp-icon-editor-arrow-down-small.ts create mode 100644 packages/icons-editor/icons/sp-icon-editor-arrow-right-small.ts create mode 100644 packages/icons-editor/icons/sp-icon-editor-copy.ts create mode 100644 packages/icons-editor/icons/sp-icon-editor-delete.ts rename packages/icons-editor/icons/{sp-icon-editor-easeoutquad.ts => sp-icon-editor-easein-cubic.ts} (79%) rename packages/icons-editor/icons/{sp-icon-editor-easeinquad.ts => sp-icon-editor-easein-quad.ts} (80%) rename packages/icons-editor/icons/{sp-icon-editor-easeinoutcubic.ts => sp-icon-editor-easeinout-cubic.ts} (77%) rename packages/icons-editor/icons/{sp-icon-editor-easeincubic.ts => sp-icon-editor-easeout-back.ts} (79%) rename packages/icons-editor/icons/{sp-icon-editor-easeoutbounce.ts => sp-icon-editor-easeout-bounce.ts} (79%) rename packages/icons-editor/icons/{sp-icon-editor-easeoutcubic.ts => sp-icon-editor-easeout-cubic.ts} (79%) rename packages/icons-editor/icons/{sp-icon-editor-easeoutelastic.ts => sp-icon-editor-easeout-elastic.ts} (78%) rename packages/icons-editor/icons/{sp-icon-editor-easeoutback.ts => sp-icon-editor-easeout-quad.ts} (79%) create mode 100644 packages/icons-editor/icons/sp-icon-editor-figma-static.ts rename packages/icons-editor/icons/{sp-icon-editor-arrow-down.ts => sp-icon-editor-inspire.ts} (80%) create mode 100644 packages/icons-editor/icons/sp-icon-editor-locate.ts create mode 100644 packages/icons-editor/icons/sp-icon-editor-publish.ts create mode 100644 packages/icons-editor/icons/sp-icon-editor-share.ts create mode 100644 packages/icons-editor/icons/sp-icon-editor-sketch-static.ts create mode 100644 packages/icons-editor/icons/sp-icon-editor-tag.ts create mode 100644 packages/icons-editor/src/elements/IconArrowDownSmall.ts create mode 100644 packages/icons-editor/src/elements/IconArrowRightSmall.ts rename packages/icons-editor/src/elements/{IconArrowDown.ts => IconCopy.ts} (82%) create mode 100644 packages/icons-editor/src/elements/IconDelete.ts create mode 100644 packages/icons-editor/src/elements/IconFigmaStatic.ts create mode 100644 packages/icons-editor/src/elements/IconInspire.ts create mode 100644 packages/icons-editor/src/elements/IconLocate.ts create mode 100644 packages/icons-editor/src/elements/IconPublish.ts create mode 100644 packages/icons-editor/src/elements/IconShare.ts create mode 100644 packages/icons-editor/src/elements/IconSketchStatic.ts create mode 100644 packages/icons-editor/src/elements/IconTag.ts rename packages/icons-editor/src/icons/{ArrowDown.ts => ArrowDownSmall.ts} (91%) create mode 100644 packages/icons-editor/src/icons/ArrowRightSmall.ts create mode 100644 packages/icons-editor/src/icons/Copy.ts create mode 100644 packages/icons-editor/src/icons/Delete.ts create mode 100644 packages/icons-editor/src/icons/FigmaStatic.ts create mode 100644 packages/icons-editor/src/icons/Inspire.ts create mode 100644 packages/icons-editor/src/icons/Locate.ts create mode 100644 packages/icons-editor/src/icons/Publish.ts create mode 100644 packages/icons-editor/src/icons/Share.ts create mode 100644 packages/icons-editor/src/icons/SketchStatic.ts create mode 100644 packages/icons-editor/src/icons/Tag.ts create mode 100644 packages/icons-editor/src/svg/ArrowDownSmall.svg create mode 100644 packages/icons-editor/src/svg/ArrowRightSmall.svg create mode 100644 packages/icons-editor/src/svg/Copy.svg create mode 100644 packages/icons-editor/src/svg/Delete.svg create mode 100644 packages/icons-editor/src/svg/FigmaStatic.svg create mode 100644 packages/icons-editor/src/svg/Inspire.svg create mode 100644 packages/icons-editor/src/svg/Locate.svg create mode 100644 packages/icons-editor/src/svg/Publish.svg create mode 100644 packages/icons-editor/src/svg/Share.svg create mode 100644 packages/icons-editor/src/svg/SketchStatic.svg create mode 100644 packages/icons-editor/src/svg/Tag.svg diff --git a/packages/icons-editor/icons/sp-icon-editor-arrow-down-small.ts b/packages/icons-editor/icons/sp-icon-editor-arrow-down-small.ts new file mode 100644 index 00000000000..b7ff01a243f --- /dev/null +++ b/packages/icons-editor/icons/sp-icon-editor-arrow-down-small.ts @@ -0,0 +1,26 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { iliadCustomElementsDefine } from '@iliad-ui/base'; +import { IconArrowDownSmall } from '../src/elements/IconArrowDownSmall.js'; + +iliadCustomElementsDefine( + 'sp-icon-editor-arrow-down-small', + IconArrowDownSmall +); + +declare global { + interface HTMLElementTagNameMap { + 'sp-icon-editor-arrow-down-small': IconArrowDownSmall; + } +} diff --git a/packages/icons-editor/icons/sp-icon-editor-arrow-right-small.ts b/packages/icons-editor/icons/sp-icon-editor-arrow-right-small.ts new file mode 100644 index 00000000000..e6510a6c673 --- /dev/null +++ b/packages/icons-editor/icons/sp-icon-editor-arrow-right-small.ts @@ -0,0 +1,26 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { iliadCustomElementsDefine } from '@iliad-ui/base'; +import { IconArrowRightSmall } from '../src/elements/IconArrowRightSmall.js'; + +iliadCustomElementsDefine( + 'sp-icon-editor-arrow-right-small', + IconArrowRightSmall +); + +declare global { + interface HTMLElementTagNameMap { + 'sp-icon-editor-arrow-right-small': IconArrowRightSmall; + } +} diff --git a/packages/icons-editor/icons/sp-icon-editor-copy.ts b/packages/icons-editor/icons/sp-icon-editor-copy.ts new file mode 100644 index 00000000000..ade2d557b88 --- /dev/null +++ b/packages/icons-editor/icons/sp-icon-editor-copy.ts @@ -0,0 +1,23 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { iliadCustomElementsDefine } from '@iliad-ui/base'; +import { IconCopy } from '../src/elements/IconCopy.js'; + +iliadCustomElementsDefine('sp-icon-editor-copy', IconCopy); + +declare global { + interface HTMLElementTagNameMap { + 'sp-icon-editor-copy': IconCopy; + } +} diff --git a/packages/icons-editor/icons/sp-icon-editor-delete.ts b/packages/icons-editor/icons/sp-icon-editor-delete.ts new file mode 100644 index 00000000000..e7bdf9d8bba --- /dev/null +++ b/packages/icons-editor/icons/sp-icon-editor-delete.ts @@ -0,0 +1,23 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { iliadCustomElementsDefine } from '@iliad-ui/base'; +import { IconDelete } from '../src/elements/IconDelete.js'; + +iliadCustomElementsDefine('sp-icon-editor-delete', IconDelete); + +declare global { + interface HTMLElementTagNameMap { + 'sp-icon-editor-delete': IconDelete; + } +} diff --git a/packages/icons-editor/icons/sp-icon-editor-easeoutquad.ts b/packages/icons-editor/icons/sp-icon-editor-easein-cubic.ts similarity index 79% rename from packages/icons-editor/icons/sp-icon-editor-easeoutquad.ts rename to packages/icons-editor/icons/sp-icon-editor-easein-cubic.ts index 733f2e13be3..0c5d051c38a 100644 --- a/packages/icons-editor/icons/sp-icon-editor-easeoutquad.ts +++ b/packages/icons-editor/icons/sp-icon-editor-easein-cubic.ts @@ -12,12 +12,12 @@ governing permissions and limitations under the License. */ import { iliadCustomElementsDefine } from '@iliad-ui/base'; -import { IconEaseoutquad } from '../src/elements/IconEaseoutquad.js'; +import { IconEaseinCubic } from '../src/elements/IconEaseinCubic.js'; -iliadCustomElementsDefine('sp-icon-editor-easeoutquad', IconEaseoutquad); +iliadCustomElementsDefine('sp-icon-editor-easein-cubic', IconEaseinCubic); declare global { interface HTMLElementTagNameMap { - 'sp-icon-editor-easeoutquad': IconEaseoutquad; + 'sp-icon-editor-easein-cubic': IconEaseinCubic; } } diff --git a/packages/icons-editor/icons/sp-icon-editor-easeinquad.ts b/packages/icons-editor/icons/sp-icon-editor-easein-quad.ts similarity index 80% rename from packages/icons-editor/icons/sp-icon-editor-easeinquad.ts rename to packages/icons-editor/icons/sp-icon-editor-easein-quad.ts index 00c579cc22d..8d21cee08a0 100644 --- a/packages/icons-editor/icons/sp-icon-editor-easeinquad.ts +++ b/packages/icons-editor/icons/sp-icon-editor-easein-quad.ts @@ -12,12 +12,12 @@ governing permissions and limitations under the License. */ import { iliadCustomElementsDefine } from '@iliad-ui/base'; -import { IconEaseinquad } from '../src/elements/IconEaseinquad.js'; +import { IconEaseinQuad } from '../src/elements/IconEaseinQuad.js'; -iliadCustomElementsDefine('sp-icon-editor-easeinquad', IconEaseinquad); +iliadCustomElementsDefine('sp-icon-editor-easein-quad', IconEaseinQuad); declare global { interface HTMLElementTagNameMap { - 'sp-icon-editor-easeinquad': IconEaseinquad; + 'sp-icon-editor-easein-quad': IconEaseinQuad; } } diff --git a/packages/icons-editor/icons/sp-icon-editor-easeinoutcubic.ts b/packages/icons-editor/icons/sp-icon-editor-easeinout-cubic.ts similarity index 77% rename from packages/icons-editor/icons/sp-icon-editor-easeinoutcubic.ts rename to packages/icons-editor/icons/sp-icon-editor-easeinout-cubic.ts index b7be1fe2545..b7a43153d7f 100644 --- a/packages/icons-editor/icons/sp-icon-editor-easeinoutcubic.ts +++ b/packages/icons-editor/icons/sp-icon-editor-easeinout-cubic.ts @@ -12,12 +12,12 @@ governing permissions and limitations under the License. */ import { iliadCustomElementsDefine } from '@iliad-ui/base'; -import { IconEaseinoutcubic } from '../src/elements/IconEaseinoutcubic.js'; +import { IconEaseinoutCubic } from '../src/elements/IconEaseinoutCubic.js'; -iliadCustomElementsDefine('sp-icon-editor-easeinoutcubic', IconEaseinoutcubic); +iliadCustomElementsDefine('sp-icon-editor-easeinout-cubic', IconEaseinoutCubic); declare global { interface HTMLElementTagNameMap { - 'sp-icon-editor-easeinoutcubic': IconEaseinoutcubic; + 'sp-icon-editor-easeinout-cubic': IconEaseinoutCubic; } } diff --git a/packages/icons-editor/icons/sp-icon-editor-easeincubic.ts b/packages/icons-editor/icons/sp-icon-editor-easeout-back.ts similarity index 79% rename from packages/icons-editor/icons/sp-icon-editor-easeincubic.ts rename to packages/icons-editor/icons/sp-icon-editor-easeout-back.ts index e609692e282..028d91a344e 100644 --- a/packages/icons-editor/icons/sp-icon-editor-easeincubic.ts +++ b/packages/icons-editor/icons/sp-icon-editor-easeout-back.ts @@ -12,12 +12,12 @@ governing permissions and limitations under the License. */ import { iliadCustomElementsDefine } from '@iliad-ui/base'; -import { IconEaseincubic } from '../src/elements/IconEaseincubic.js'; +import { IconEaseoutBack } from '../src/elements/IconEaseoutBack.js'; -iliadCustomElementsDefine('sp-icon-editor-easeincubic', IconEaseincubic); +iliadCustomElementsDefine('sp-icon-editor-easeout-back', IconEaseoutBack); declare global { interface HTMLElementTagNameMap { - 'sp-icon-editor-easeincubic': IconEaseincubic; + 'sp-icon-editor-easeout-back': IconEaseoutBack; } } diff --git a/packages/icons-editor/icons/sp-icon-editor-easeoutbounce.ts b/packages/icons-editor/icons/sp-icon-editor-easeout-bounce.ts similarity index 79% rename from packages/icons-editor/icons/sp-icon-editor-easeoutbounce.ts rename to packages/icons-editor/icons/sp-icon-editor-easeout-bounce.ts index 899b77bfeed..bee700f743e 100644 --- a/packages/icons-editor/icons/sp-icon-editor-easeoutbounce.ts +++ b/packages/icons-editor/icons/sp-icon-editor-easeout-bounce.ts @@ -12,12 +12,12 @@ governing permissions and limitations under the License. */ import { iliadCustomElementsDefine } from '@iliad-ui/base'; -import { IconEaseoutbounce } from '../src/elements/IconEaseoutbounce.js'; +import { IconEaseoutBounce } from '../src/elements/IconEaseoutBounce.js'; -iliadCustomElementsDefine('sp-icon-editor-easeoutbounce', IconEaseoutbounce); +iliadCustomElementsDefine('sp-icon-editor-easeout-bounce', IconEaseoutBounce); declare global { interface HTMLElementTagNameMap { - 'sp-icon-editor-easeoutbounce': IconEaseoutbounce; + 'sp-icon-editor-easeout-bounce': IconEaseoutBounce; } } diff --git a/packages/icons-editor/icons/sp-icon-editor-easeoutcubic.ts b/packages/icons-editor/icons/sp-icon-editor-easeout-cubic.ts similarity index 79% rename from packages/icons-editor/icons/sp-icon-editor-easeoutcubic.ts rename to packages/icons-editor/icons/sp-icon-editor-easeout-cubic.ts index 0fabe0cfe4c..ecbf41f225a 100644 --- a/packages/icons-editor/icons/sp-icon-editor-easeoutcubic.ts +++ b/packages/icons-editor/icons/sp-icon-editor-easeout-cubic.ts @@ -12,12 +12,12 @@ governing permissions and limitations under the License. */ import { iliadCustomElementsDefine } from '@iliad-ui/base'; -import { IconEaseoutcubic } from '../src/elements/IconEaseoutcubic.js'; +import { IconEaseoutCubic } from '../src/elements/IconEaseoutCubic.js'; -iliadCustomElementsDefine('sp-icon-editor-easeoutcubic', IconEaseoutcubic); +iliadCustomElementsDefine('sp-icon-editor-easeout-cubic', IconEaseoutCubic); declare global { interface HTMLElementTagNameMap { - 'sp-icon-editor-easeoutcubic': IconEaseoutcubic; + 'sp-icon-editor-easeout-cubic': IconEaseoutCubic; } } diff --git a/packages/icons-editor/icons/sp-icon-editor-easeoutelastic.ts b/packages/icons-editor/icons/sp-icon-editor-easeout-elastic.ts similarity index 78% rename from packages/icons-editor/icons/sp-icon-editor-easeoutelastic.ts rename to packages/icons-editor/icons/sp-icon-editor-easeout-elastic.ts index 3f2aa4d05b2..5b6ab81096d 100644 --- a/packages/icons-editor/icons/sp-icon-editor-easeoutelastic.ts +++ b/packages/icons-editor/icons/sp-icon-editor-easeout-elastic.ts @@ -12,12 +12,12 @@ governing permissions and limitations under the License. */ import { iliadCustomElementsDefine } from '@iliad-ui/base'; -import { IconEaseoutelastic } from '../src/elements/IconEaseoutelastic.js'; +import { IconEaseoutElastic } from '../src/elements/IconEaseoutElastic.js'; -iliadCustomElementsDefine('sp-icon-editor-easeoutelastic', IconEaseoutelastic); +iliadCustomElementsDefine('sp-icon-editor-easeout-elastic', IconEaseoutElastic); declare global { interface HTMLElementTagNameMap { - 'sp-icon-editor-easeoutelastic': IconEaseoutelastic; + 'sp-icon-editor-easeout-elastic': IconEaseoutElastic; } } diff --git a/packages/icons-editor/icons/sp-icon-editor-easeoutback.ts b/packages/icons-editor/icons/sp-icon-editor-easeout-quad.ts similarity index 79% rename from packages/icons-editor/icons/sp-icon-editor-easeoutback.ts rename to packages/icons-editor/icons/sp-icon-editor-easeout-quad.ts index 58730978bf5..ab6d6960bcd 100644 --- a/packages/icons-editor/icons/sp-icon-editor-easeoutback.ts +++ b/packages/icons-editor/icons/sp-icon-editor-easeout-quad.ts @@ -12,12 +12,12 @@ governing permissions and limitations under the License. */ import { iliadCustomElementsDefine } from '@iliad-ui/base'; -import { IconEaseoutback } from '../src/elements/IconEaseoutback.js'; +import { IconEaseoutQuad } from '../src/elements/IconEaseoutQuad.js'; -iliadCustomElementsDefine('sp-icon-editor-easeoutback', IconEaseoutback); +iliadCustomElementsDefine('sp-icon-editor-easeout-quad', IconEaseoutQuad); declare global { interface HTMLElementTagNameMap { - 'sp-icon-editor-easeoutback': IconEaseoutback; + 'sp-icon-editor-easeout-quad': IconEaseoutQuad; } } diff --git a/packages/icons-editor/icons/sp-icon-editor-figma-static.ts b/packages/icons-editor/icons/sp-icon-editor-figma-static.ts new file mode 100644 index 00000000000..13fa163cef5 --- /dev/null +++ b/packages/icons-editor/icons/sp-icon-editor-figma-static.ts @@ -0,0 +1,23 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { iliadCustomElementsDefine } from '@iliad-ui/base'; +import { IconFigmaStatic } from '../src/elements/IconFigmaStatic.js'; + +iliadCustomElementsDefine('sp-icon-editor-figma-static', IconFigmaStatic); + +declare global { + interface HTMLElementTagNameMap { + 'sp-icon-editor-figma-static': IconFigmaStatic; + } +} diff --git a/packages/icons-editor/icons/sp-icon-editor-arrow-down.ts b/packages/icons-editor/icons/sp-icon-editor-inspire.ts similarity index 80% rename from packages/icons-editor/icons/sp-icon-editor-arrow-down.ts rename to packages/icons-editor/icons/sp-icon-editor-inspire.ts index 71bc7fd9e49..f9e62ae06cd 100644 --- a/packages/icons-editor/icons/sp-icon-editor-arrow-down.ts +++ b/packages/icons-editor/icons/sp-icon-editor-inspire.ts @@ -12,12 +12,12 @@ governing permissions and limitations under the License. */ import { iliadCustomElementsDefine } from '@iliad-ui/base'; -import { IconArrowDown } from '../src/elements/IconArrowDown.js'; +import { IconInspire } from '../src/elements/IconInspire.js'; -iliadCustomElementsDefine('sp-icon-editor-arrow-down', IconArrowDown); +iliadCustomElementsDefine('sp-icon-editor-inspire', IconInspire); declare global { interface HTMLElementTagNameMap { - 'sp-icon-editor-arrow-down': IconArrowDown; + 'sp-icon-editor-inspire': IconInspire; } } diff --git a/packages/icons-editor/icons/sp-icon-editor-locate.ts b/packages/icons-editor/icons/sp-icon-editor-locate.ts new file mode 100644 index 00000000000..6f31351d648 --- /dev/null +++ b/packages/icons-editor/icons/sp-icon-editor-locate.ts @@ -0,0 +1,23 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { iliadCustomElementsDefine } from '@iliad-ui/base'; +import { IconLocate } from '../src/elements/IconLocate.js'; + +iliadCustomElementsDefine('sp-icon-editor-locate', IconLocate); + +declare global { + interface HTMLElementTagNameMap { + 'sp-icon-editor-locate': IconLocate; + } +} diff --git a/packages/icons-editor/icons/sp-icon-editor-publish.ts b/packages/icons-editor/icons/sp-icon-editor-publish.ts new file mode 100644 index 00000000000..974337b75fe --- /dev/null +++ b/packages/icons-editor/icons/sp-icon-editor-publish.ts @@ -0,0 +1,23 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { iliadCustomElementsDefine } from '@iliad-ui/base'; +import { IconPublish } from '../src/elements/IconPublish.js'; + +iliadCustomElementsDefine('sp-icon-editor-publish', IconPublish); + +declare global { + interface HTMLElementTagNameMap { + 'sp-icon-editor-publish': IconPublish; + } +} diff --git a/packages/icons-editor/icons/sp-icon-editor-share.ts b/packages/icons-editor/icons/sp-icon-editor-share.ts new file mode 100644 index 00000000000..b2942448e27 --- /dev/null +++ b/packages/icons-editor/icons/sp-icon-editor-share.ts @@ -0,0 +1,23 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { iliadCustomElementsDefine } from '@iliad-ui/base'; +import { IconShare } from '../src/elements/IconShare.js'; + +iliadCustomElementsDefine('sp-icon-editor-share', IconShare); + +declare global { + interface HTMLElementTagNameMap { + 'sp-icon-editor-share': IconShare; + } +} diff --git a/packages/icons-editor/icons/sp-icon-editor-sketch-static.ts b/packages/icons-editor/icons/sp-icon-editor-sketch-static.ts new file mode 100644 index 00000000000..58d2130a41d --- /dev/null +++ b/packages/icons-editor/icons/sp-icon-editor-sketch-static.ts @@ -0,0 +1,23 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { iliadCustomElementsDefine } from '@iliad-ui/base'; +import { IconSketchStatic } from '../src/elements/IconSketchStatic.js'; + +iliadCustomElementsDefine('sp-icon-editor-sketch-static', IconSketchStatic); + +declare global { + interface HTMLElementTagNameMap { + 'sp-icon-editor-sketch-static': IconSketchStatic; + } +} diff --git a/packages/icons-editor/icons/sp-icon-editor-tag.ts b/packages/icons-editor/icons/sp-icon-editor-tag.ts new file mode 100644 index 00000000000..36af0d9a869 --- /dev/null +++ b/packages/icons-editor/icons/sp-icon-editor-tag.ts @@ -0,0 +1,23 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { iliadCustomElementsDefine } from '@iliad-ui/base'; +import { IconTag } from '../src/elements/IconTag.js'; + +iliadCustomElementsDefine('sp-icon-editor-tag', IconTag); + +declare global { + interface HTMLElementTagNameMap { + 'sp-icon-editor-tag': IconTag; + } +} diff --git a/packages/icons-editor/src/elements/IconArrowDownSmall.ts b/packages/icons-editor/src/elements/IconArrowDownSmall.ts new file mode 100644 index 00000000000..f6273fb7d0a --- /dev/null +++ b/packages/icons-editor/src/elements/IconArrowDownSmall.ts @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { IconBase } from '@iliad-ui/icon'; +import { ArrowDownSmallIcon } from '../icons/ArrowDownSmall.js'; +import { setCustomTemplateLiteralTag } from '../custom-tag.js'; + +/** + * @element sp-icon-editor-arrow-down-small + */ +export class IconArrowDownSmall extends IconBase { + protected render(): TemplateResult { + setCustomTemplateLiteralTag(html); + return ArrowDownSmallIcon() as TemplateResult; + } +} diff --git a/packages/icons-editor/src/elements/IconArrowRightSmall.ts b/packages/icons-editor/src/elements/IconArrowRightSmall.ts new file mode 100644 index 00000000000..707b2614594 --- /dev/null +++ b/packages/icons-editor/src/elements/IconArrowRightSmall.ts @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { IconBase } from '@iliad-ui/icon'; +import { ArrowRightSmallIcon } from '../icons/ArrowRightSmall.js'; +import { setCustomTemplateLiteralTag } from '../custom-tag.js'; + +/** + * @element sp-icon-editor-arrow-right-small + */ +export class IconArrowRightSmall extends IconBase { + protected render(): TemplateResult { + setCustomTemplateLiteralTag(html); + return ArrowRightSmallIcon() as TemplateResult; + } +} diff --git a/packages/icons-editor/src/elements/IconArrowDown.ts b/packages/icons-editor/src/elements/IconCopy.ts similarity index 82% rename from packages/icons-editor/src/elements/IconArrowDown.ts rename to packages/icons-editor/src/elements/IconCopy.ts index 2312b3055ab..6564503048e 100644 --- a/packages/icons-editor/src/elements/IconArrowDown.ts +++ b/packages/icons-editor/src/elements/IconCopy.ts @@ -13,15 +13,15 @@ governing permissions and limitations under the License. import { html, TemplateResult } from '@iliad-ui/base'; import { IconBase } from '@iliad-ui/icon'; -import { ArrowDownIcon } from '../icons/ArrowDown.js'; +import { CopyIcon } from '../icons/Copy.js'; import { setCustomTemplateLiteralTag } from '../custom-tag.js'; /** - * @element sp-icon-editor-arrow-down + * @element sp-icon-editor-copy */ -export class IconArrowDown extends IconBase { +export class IconCopy extends IconBase { protected render(): TemplateResult { setCustomTemplateLiteralTag(html); - return ArrowDownIcon() as TemplateResult; + return CopyIcon() as TemplateResult; } } diff --git a/packages/icons-editor/src/elements/IconDelete.ts b/packages/icons-editor/src/elements/IconDelete.ts new file mode 100644 index 00000000000..a8511f42430 --- /dev/null +++ b/packages/icons-editor/src/elements/IconDelete.ts @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { IconBase } from '@iliad-ui/icon'; +import { DeleteIcon } from '../icons/Delete.js'; +import { setCustomTemplateLiteralTag } from '../custom-tag.js'; + +/** + * @element sp-icon-editor-delete + */ +export class IconDelete extends IconBase { + protected render(): TemplateResult { + setCustomTemplateLiteralTag(html); + return DeleteIcon() as TemplateResult; + } +} diff --git a/packages/icons-editor/src/elements/IconEaseincubic.ts b/packages/icons-editor/src/elements/IconEaseincubic.ts index 8e049b27a63..039e2516fce 100644 --- a/packages/icons-editor/src/elements/IconEaseincubic.ts +++ b/packages/icons-editor/src/elements/IconEaseincubic.ts @@ -13,15 +13,15 @@ governing permissions and limitations under the License. import { html, TemplateResult } from '@iliad-ui/base'; import { IconBase } from '@iliad-ui/icon'; -import { EaseincubicIcon } from '../icons/Easeincubic.js'; +import { EaseinCubicIcon } from '../icons/EaseinCubic.js'; import { setCustomTemplateLiteralTag } from '../custom-tag.js'; /** - * @element sp-icon-editor-easeincubic + * @element sp-icon-editor-easein-cubic */ -export class IconEaseincubic extends IconBase { +export class IconEaseinCubic extends IconBase { protected render(): TemplateResult { setCustomTemplateLiteralTag(html); - return EaseincubicIcon() as TemplateResult; + return EaseinCubicIcon() as TemplateResult; } } diff --git a/packages/icons-editor/src/elements/IconEaseinoutcubic.ts b/packages/icons-editor/src/elements/IconEaseinoutcubic.ts index 7a1a39ad713..4aa821fc750 100644 --- a/packages/icons-editor/src/elements/IconEaseinoutcubic.ts +++ b/packages/icons-editor/src/elements/IconEaseinoutcubic.ts @@ -13,15 +13,15 @@ governing permissions and limitations under the License. import { html, TemplateResult } from '@iliad-ui/base'; import { IconBase } from '@iliad-ui/icon'; -import { EaseinoutcubicIcon } from '../icons/Easeinoutcubic.js'; +import { EaseinoutCubicIcon } from '../icons/EaseinoutCubic.js'; import { setCustomTemplateLiteralTag } from '../custom-tag.js'; /** - * @element sp-icon-editor-easeinoutcubic + * @element sp-icon-editor-easeinout-cubic */ -export class IconEaseinoutcubic extends IconBase { +export class IconEaseinoutCubic extends IconBase { protected render(): TemplateResult { setCustomTemplateLiteralTag(html); - return EaseinoutcubicIcon() as TemplateResult; + return EaseinoutCubicIcon() as TemplateResult; } } diff --git a/packages/icons-editor/src/elements/IconEaseinquad.ts b/packages/icons-editor/src/elements/IconEaseinquad.ts index 075a534c23e..be4fb8e3fd0 100644 --- a/packages/icons-editor/src/elements/IconEaseinquad.ts +++ b/packages/icons-editor/src/elements/IconEaseinquad.ts @@ -13,15 +13,15 @@ governing permissions and limitations under the License. import { html, TemplateResult } from '@iliad-ui/base'; import { IconBase } from '@iliad-ui/icon'; -import { EaseinquadIcon } from '../icons/Easeinquad.js'; +import { EaseinQuadIcon } from '../icons/EaseinQuad.js'; import { setCustomTemplateLiteralTag } from '../custom-tag.js'; /** - * @element sp-icon-editor-easeinquad + * @element sp-icon-editor-easein-quad */ -export class IconEaseinquad extends IconBase { +export class IconEaseinQuad extends IconBase { protected render(): TemplateResult { setCustomTemplateLiteralTag(html); - return EaseinquadIcon() as TemplateResult; + return EaseinQuadIcon() as TemplateResult; } } diff --git a/packages/icons-editor/src/elements/IconEaseoutback.ts b/packages/icons-editor/src/elements/IconEaseoutback.ts index 67e94a29605..d22c752bae4 100644 --- a/packages/icons-editor/src/elements/IconEaseoutback.ts +++ b/packages/icons-editor/src/elements/IconEaseoutback.ts @@ -13,15 +13,15 @@ governing permissions and limitations under the License. import { html, TemplateResult } from '@iliad-ui/base'; import { IconBase } from '@iliad-ui/icon'; -import { EaseoutbackIcon } from '../icons/Easeoutback.js'; +import { EaseoutBackIcon } from '../icons/EaseoutBack.js'; import { setCustomTemplateLiteralTag } from '../custom-tag.js'; /** - * @element sp-icon-editor-easeoutback + * @element sp-icon-editor-easeout-back */ -export class IconEaseoutback extends IconBase { +export class IconEaseoutBack extends IconBase { protected render(): TemplateResult { setCustomTemplateLiteralTag(html); - return EaseoutbackIcon() as TemplateResult; + return EaseoutBackIcon() as TemplateResult; } } diff --git a/packages/icons-editor/src/elements/IconEaseoutbounce.ts b/packages/icons-editor/src/elements/IconEaseoutbounce.ts index 80c419d5e75..477e56886df 100644 --- a/packages/icons-editor/src/elements/IconEaseoutbounce.ts +++ b/packages/icons-editor/src/elements/IconEaseoutbounce.ts @@ -13,15 +13,15 @@ governing permissions and limitations under the License. import { html, TemplateResult } from '@iliad-ui/base'; import { IconBase } from '@iliad-ui/icon'; -import { EaseoutbounceIcon } from '../icons/Easeoutbounce.js'; +import { EaseoutBounceIcon } from '../icons/EaseoutBounce.js'; import { setCustomTemplateLiteralTag } from '../custom-tag.js'; /** - * @element sp-icon-editor-easeoutbounce + * @element sp-icon-editor-easeout-bounce */ -export class IconEaseoutbounce extends IconBase { +export class IconEaseoutBounce extends IconBase { protected render(): TemplateResult { setCustomTemplateLiteralTag(html); - return EaseoutbounceIcon() as TemplateResult; + return EaseoutBounceIcon() as TemplateResult; } } diff --git a/packages/icons-editor/src/elements/IconEaseoutcubic.ts b/packages/icons-editor/src/elements/IconEaseoutcubic.ts index 40f3ca4aacd..73c57d938ae 100644 --- a/packages/icons-editor/src/elements/IconEaseoutcubic.ts +++ b/packages/icons-editor/src/elements/IconEaseoutcubic.ts @@ -13,15 +13,15 @@ governing permissions and limitations under the License. import { html, TemplateResult } from '@iliad-ui/base'; import { IconBase } from '@iliad-ui/icon'; -import { EaseoutcubicIcon } from '../icons/Easeoutcubic.js'; +import { EaseoutCubicIcon } from '../icons/EaseoutCubic.js'; import { setCustomTemplateLiteralTag } from '../custom-tag.js'; /** - * @element sp-icon-editor-easeoutcubic + * @element sp-icon-editor-easeout-cubic */ -export class IconEaseoutcubic extends IconBase { +export class IconEaseoutCubic extends IconBase { protected render(): TemplateResult { setCustomTemplateLiteralTag(html); - return EaseoutcubicIcon() as TemplateResult; + return EaseoutCubicIcon() as TemplateResult; } } diff --git a/packages/icons-editor/src/elements/IconEaseoutelastic.ts b/packages/icons-editor/src/elements/IconEaseoutelastic.ts index cf1086b3048..4df6c49d95e 100644 --- a/packages/icons-editor/src/elements/IconEaseoutelastic.ts +++ b/packages/icons-editor/src/elements/IconEaseoutelastic.ts @@ -13,15 +13,15 @@ governing permissions and limitations under the License. import { html, TemplateResult } from '@iliad-ui/base'; import { IconBase } from '@iliad-ui/icon'; -import { EaseoutelasticIcon } from '../icons/Easeoutelastic.js'; +import { EaseoutElasticIcon } from '../icons/EaseoutElastic.js'; import { setCustomTemplateLiteralTag } from '../custom-tag.js'; /** - * @element sp-icon-editor-easeoutelastic + * @element sp-icon-editor-easeout-elastic */ -export class IconEaseoutelastic extends IconBase { +export class IconEaseoutElastic extends IconBase { protected render(): TemplateResult { setCustomTemplateLiteralTag(html); - return EaseoutelasticIcon() as TemplateResult; + return EaseoutElasticIcon() as TemplateResult; } } diff --git a/packages/icons-editor/src/elements/IconEaseoutquad.ts b/packages/icons-editor/src/elements/IconEaseoutquad.ts index ed9e4d5c41d..cb783747711 100644 --- a/packages/icons-editor/src/elements/IconEaseoutquad.ts +++ b/packages/icons-editor/src/elements/IconEaseoutquad.ts @@ -13,15 +13,15 @@ governing permissions and limitations under the License. import { html, TemplateResult } from '@iliad-ui/base'; import { IconBase } from '@iliad-ui/icon'; -import { EaseoutquadIcon } from '../icons/Easeoutquad.js'; +import { EaseoutQuadIcon } from '../icons/EaseoutQuad.js'; import { setCustomTemplateLiteralTag } from '../custom-tag.js'; /** - * @element sp-icon-editor-easeoutquad + * @element sp-icon-editor-easeout-quad */ -export class IconEaseoutquad extends IconBase { +export class IconEaseoutQuad extends IconBase { protected render(): TemplateResult { setCustomTemplateLiteralTag(html); - return EaseoutquadIcon() as TemplateResult; + return EaseoutQuadIcon() as TemplateResult; } } diff --git a/packages/icons-editor/src/elements/IconFigmaStatic.ts b/packages/icons-editor/src/elements/IconFigmaStatic.ts new file mode 100644 index 00000000000..1441fa1a638 --- /dev/null +++ b/packages/icons-editor/src/elements/IconFigmaStatic.ts @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { IconBase } from '@iliad-ui/icon'; +import { FigmaStaticIcon } from '../icons/FigmaStatic.js'; +import { setCustomTemplateLiteralTag } from '../custom-tag.js'; + +/** + * @element sp-icon-editor-figma-static + */ +export class IconFigmaStatic extends IconBase { + protected render(): TemplateResult { + setCustomTemplateLiteralTag(html); + return FigmaStaticIcon() as TemplateResult; + } +} diff --git a/packages/icons-editor/src/elements/IconInspire.ts b/packages/icons-editor/src/elements/IconInspire.ts new file mode 100644 index 00000000000..9d9d82b48c1 --- /dev/null +++ b/packages/icons-editor/src/elements/IconInspire.ts @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { IconBase } from '@iliad-ui/icon'; +import { InspireIcon } from '../icons/Inspire.js'; +import { setCustomTemplateLiteralTag } from '../custom-tag.js'; + +/** + * @element sp-icon-editor-inspire + */ +export class IconInspire extends IconBase { + protected render(): TemplateResult { + setCustomTemplateLiteralTag(html); + return InspireIcon() as TemplateResult; + } +} diff --git a/packages/icons-editor/src/elements/IconLocate.ts b/packages/icons-editor/src/elements/IconLocate.ts new file mode 100644 index 00000000000..23515f66f6a --- /dev/null +++ b/packages/icons-editor/src/elements/IconLocate.ts @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { IconBase } from '@iliad-ui/icon'; +import { LocateIcon } from '../icons/Locate.js'; +import { setCustomTemplateLiteralTag } from '../custom-tag.js'; + +/** + * @element sp-icon-editor-locate + */ +export class IconLocate extends IconBase { + protected render(): TemplateResult { + setCustomTemplateLiteralTag(html); + return LocateIcon() as TemplateResult; + } +} diff --git a/packages/icons-editor/src/elements/IconPublish.ts b/packages/icons-editor/src/elements/IconPublish.ts new file mode 100644 index 00000000000..8a215a20ef6 --- /dev/null +++ b/packages/icons-editor/src/elements/IconPublish.ts @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { IconBase } from '@iliad-ui/icon'; +import { PublishIcon } from '../icons/Publish.js'; +import { setCustomTemplateLiteralTag } from '../custom-tag.js'; + +/** + * @element sp-icon-editor-publish + */ +export class IconPublish extends IconBase { + protected render(): TemplateResult { + setCustomTemplateLiteralTag(html); + return PublishIcon() as TemplateResult; + } +} diff --git a/packages/icons-editor/src/elements/IconShare.ts b/packages/icons-editor/src/elements/IconShare.ts new file mode 100644 index 00000000000..19b0e8db6b2 --- /dev/null +++ b/packages/icons-editor/src/elements/IconShare.ts @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { IconBase } from '@iliad-ui/icon'; +import { ShareIcon } from '../icons/Share.js'; +import { setCustomTemplateLiteralTag } from '../custom-tag.js'; + +/** + * @element sp-icon-editor-share + */ +export class IconShare extends IconBase { + protected render(): TemplateResult { + setCustomTemplateLiteralTag(html); + return ShareIcon() as TemplateResult; + } +} diff --git a/packages/icons-editor/src/elements/IconSketchStatic.ts b/packages/icons-editor/src/elements/IconSketchStatic.ts new file mode 100644 index 00000000000..147b63641ac --- /dev/null +++ b/packages/icons-editor/src/elements/IconSketchStatic.ts @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { IconBase } from '@iliad-ui/icon'; +import { SketchStaticIcon } from '../icons/SketchStatic.js'; +import { setCustomTemplateLiteralTag } from '../custom-tag.js'; + +/** + * @element sp-icon-editor-sketch-static + */ +export class IconSketchStatic extends IconBase { + protected render(): TemplateResult { + setCustomTemplateLiteralTag(html); + return SketchStaticIcon() as TemplateResult; + } +} diff --git a/packages/icons-editor/src/elements/IconTag.ts b/packages/icons-editor/src/elements/IconTag.ts new file mode 100644 index 00000000000..92a0913b182 --- /dev/null +++ b/packages/icons-editor/src/elements/IconTag.ts @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { IconBase } from '@iliad-ui/icon'; +import { TagIcon } from '../icons/Tag.js'; +import { setCustomTemplateLiteralTag } from '../custom-tag.js'; + +/** + * @element sp-icon-editor-tag + */ +export class IconTag extends IconBase { + protected render(): TemplateResult { + setCustomTemplateLiteralTag(html); + return TagIcon() as TemplateResult; + } +} diff --git a/packages/icons-editor/src/icons.ts b/packages/icons-editor/src/icons.ts index 6ee0ae07612..0c94a27b836 100644 --- a/packages/icons-editor/src/icons.ts +++ b/packages/icons-editor/src/icons.ts @@ -22,9 +22,10 @@ export { AlignRightIcon } from './icons/AlignRight.js'; export { AlignTopIcon } from './icons/AlignTop.js'; export { AlignVertCentersIcon } from './icons/AlignVertCenters.js'; export { AnimationIcon } from './icons/Animation.js'; -export { ArrowDownIcon } from './icons/ArrowDown.js'; +export { ArrowDownSmallIcon } from './icons/ArrowDownSmall.js'; export { ArrowLeftIcon } from './icons/ArrowLeft.js'; export { ArrowRightIcon } from './icons/ArrowRight.js'; +export { ArrowRightSmallIcon } from './icons/ArrowRightSmall.js'; export { ArrowTriangleIcon } from './icons/ArrowTriangle.js'; export { BackspaceIcon } from './icons/Backspace.js'; export { CheckIcon } from './icons/Check.js'; @@ -38,6 +39,7 @@ export { ColorpickerIcon } from './icons/Colorpicker.js'; export { CommandIcon } from './icons/Command.js'; export { ContactsIcon } from './icons/Contacts.js'; export { ContainerIcon } from './icons/Container.js'; +export { CopyIcon } from './icons/Copy.js'; export { CornerIcon } from './icons/Corner.js'; export { CornerRadiusBottomLeftIcon } from './icons/CornerRadiusBottomLeft.js'; export { CornerRadiusBottomRightIcon } from './icons/CornerRadiusBottomRight.js'; @@ -45,6 +47,7 @@ export { CornerRadiusTopLeftIcon } from './icons/CornerRadiusTopLeft.js'; export { CornerRadiusTopRightIcon } from './icons/CornerRadiusTopRight.js'; export { CropIcon } from './icons/Crop.js'; export { DataBarchartIcon } from './icons/DataBarchart.js'; +export { DeleteIcon } from './icons/Delete.js'; export { DesktopIcon } from './icons/Desktop.js'; export { DirectionCenterIcon } from './icons/DirectionCenter.js'; export { DirectionDownIcon } from './icons/DirectionDown.js'; @@ -55,14 +58,14 @@ export { DisplayIcon } from './icons/Display.js'; export { DoneIcon } from './icons/Done.js'; export { DragHandleIcon } from './icons/DragHandle.js'; export { EarthIcon } from './icons/Earth.js'; -export { EaseincubicIcon } from './icons/Easeincubic.js'; -export { EaseinoutcubicIcon } from './icons/Easeinoutcubic.js'; -export { EaseinquadIcon } from './icons/Easeinquad.js'; -export { EaseoutbackIcon } from './icons/Easeoutback.js'; -export { EaseoutbounceIcon } from './icons/Easeoutbounce.js'; -export { EaseoutcubicIcon } from './icons/Easeoutcubic.js'; -export { EaseoutelasticIcon } from './icons/Easeoutelastic.js'; -export { EaseoutquadIcon } from './icons/Easeoutquad.js'; +export { EaseinCubicIcon } from './icons/EaseinCubic.js'; +export { EaseinoutCubicIcon } from './icons/EaseinoutCubic.js'; +export { EaseinQuadIcon } from './icons/EaseinQuad.js'; +export { EaseoutBackIcon } from './icons/EaseoutBack.js'; +export { EaseoutBounceIcon } from './icons/EaseoutBounce.js'; +export { EaseoutCubicIcon } from './icons/EaseoutCubic.js'; +export { EaseoutElasticIcon } from './icons/EaseoutElastic.js'; +export { EaseoutQuadIcon } from './icons/EaseoutQuad.js'; export { EditIcon } from './icons/Edit.js'; export { EffectIcon } from './icons/Effect.js'; export { EventIcon } from './icons/Event.js'; @@ -70,6 +73,7 @@ export { EyeIcon } from './icons/Eye.js'; export { EyeDisplayIcon } from './icons/EyeDisplay.js'; export { EyeOffIcon } from './icons/EyeOff.js'; export { FigmaIcon } from './icons/Figma.js'; +export { FigmaStaticIcon } from './icons/FigmaStatic.js'; export { FileFolderIcon } from './icons/FileFolder.js'; export { FileOutlineIcon } from './icons/FileOutline.js'; export { FixedIcon } from './icons/Fixed.js'; @@ -102,6 +106,7 @@ export { ImageIcon } from './icons/Image.js'; export { ImportIcon } from './icons/Import.js'; export { InfoIcon } from './icons/Info.js'; export { InfoFillIcon } from './icons/InfoFill.js'; +export { InspireIcon } from './icons/Inspire.js'; export { LabelCIcon } from './icons/LabelC.js'; export { LabelClosebracketIcon } from './icons/LabelClosebracket.js'; export { LabelDIcon } from './icons/LabelD.js'; @@ -121,6 +126,7 @@ export { LinearIcon } from './icons/Linear.js'; export { LinkIcon } from './icons/Link.js'; export { LoadingIcon } from './icons/Loading.js'; export { LoadingWhiteIcon } from './icons/LoadingWhite.js'; +export { LocateIcon } from './icons/Locate.js'; export { LockedIcon } from './icons/Locked.js'; export { MaterielIcon } from './icons/Materiel.js'; export { MenuIcon } from './icons/Menu.js'; @@ -143,6 +149,7 @@ export { PageHeaderIcon } from './icons/PageHeader.js'; export { PagesIcon } from './icons/Pages.js'; export { ParagraphIcon } from './icons/Paragraph.js'; export { PlayIcon } from './icons/Play.js'; +export { PublishIcon } from './icons/Publish.js'; export { QrCodeIcon } from './icons/QrCode.js'; export { RadioButtonUncheckedIcon } from './icons/RadioButtonUnchecked.js'; export { RedoIcon } from './icons/Redo.js'; @@ -152,7 +159,9 @@ export { ScaleIcon } from './icons/Scale.js'; export { ScrollIcon } from './icons/Scroll.js'; export { SectionIcon } from './icons/Section.js'; export { SettingsIcon } from './icons/Settings.js'; +export { ShareIcon } from './icons/Share.js'; export { ShiftIcon } from './icons/Shift.js'; +export { SketchStaticIcon } from './icons/SketchStatic.js'; export { SkewIcon } from './icons/Skew.js'; export { SliderInvisibleIcon } from './icons/SliderInvisible.js'; export { SmartphoneIcon } from './icons/Smartphone.js'; @@ -163,6 +172,7 @@ export { StopIcon } from './icons/Stop.js'; export { StopCircleIcon } from './icons/StopCircle.js'; export { StyleIcon } from './icons/Style.js'; export { TabletMacIcon } from './icons/TabletMac.js'; +export { TagIcon } from './icons/Tag.js'; export { TextIcon } from './icons/Text.js'; export { TextBoldIcon } from './icons/TextBold.js'; export { TextDeletelineIcon } from './icons/TextDeleteline.js'; diff --git a/packages/icons-editor/src/icons/Add.ts b/packages/icons-editor/src/icons/Add.ts index b01a3e460cb..ffdcb8ec1d5 100644 --- a/packages/icons-editor/src/icons/Add.ts +++ b/packages/icons-editor/src/icons/Add.ts @@ -19,12 +19,14 @@ export const AddIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Alert.ts b/packages/icons-editor/src/icons/Alert.ts index 4716d776b67..f3bc021438f 100644 --- a/packages/icons-editor/src/icons/Alert.ts +++ b/packages/icons-editor/src/icons/Alert.ts @@ -19,12 +19,14 @@ export const AlertIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlertFill.ts b/packages/icons-editor/src/icons/AlertFill.ts index fe4f22339d2..f4632941799 100644 --- a/packages/icons-editor/src/icons/AlertFill.ts +++ b/packages/icons-editor/src/icons/AlertFill.ts @@ -19,12 +19,14 @@ export const AlertFillIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignArrangeHoriz.ts b/packages/icons-editor/src/icons/AlignArrangeHoriz.ts index d36458f0771..52860bd6f9d 100644 --- a/packages/icons-editor/src/icons/AlignArrangeHoriz.ts +++ b/packages/icons-editor/src/icons/AlignArrangeHoriz.ts @@ -19,12 +19,14 @@ export const AlignArrangeHorizIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignArrangeVert.ts b/packages/icons-editor/src/icons/AlignArrangeVert.ts index 1da2f9b9d52..a420cf79b3e 100644 --- a/packages/icons-editor/src/icons/AlignArrangeVert.ts +++ b/packages/icons-editor/src/icons/AlignArrangeVert.ts @@ -19,12 +19,14 @@ export const AlignArrangeVertIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignBottom.ts b/packages/icons-editor/src/icons/AlignBottom.ts index c3659d79d3f..219820e3478 100644 --- a/packages/icons-editor/src/icons/AlignBottom.ts +++ b/packages/icons-editor/src/icons/AlignBottom.ts @@ -19,12 +19,14 @@ export const AlignBottomIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignHorizCenters.ts b/packages/icons-editor/src/icons/AlignHorizCenters.ts index c1c8bca1e5e..3eec4964f45 100644 --- a/packages/icons-editor/src/icons/AlignHorizCenters.ts +++ b/packages/icons-editor/src/icons/AlignHorizCenters.ts @@ -19,12 +19,14 @@ export const AlignHorizCentersIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignLeft.ts b/packages/icons-editor/src/icons/AlignLeft.ts index fe9a47536b2..f691636fdfa 100644 --- a/packages/icons-editor/src/icons/AlignLeft.ts +++ b/packages/icons-editor/src/icons/AlignLeft.ts @@ -19,12 +19,14 @@ export const AlignLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignRight.ts b/packages/icons-editor/src/icons/AlignRight.ts index eddbe281af6..a352fbd1926 100644 --- a/packages/icons-editor/src/icons/AlignRight.ts +++ b/packages/icons-editor/src/icons/AlignRight.ts @@ -19,12 +19,14 @@ export const AlignRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignTop.ts b/packages/icons-editor/src/icons/AlignTop.ts index 5d7866023eb..626300f7403 100644 --- a/packages/icons-editor/src/icons/AlignTop.ts +++ b/packages/icons-editor/src/icons/AlignTop.ts @@ -19,12 +19,14 @@ export const AlignTopIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignVertCenters.ts b/packages/icons-editor/src/icons/AlignVertCenters.ts index 1c49e455f25..3dd61251493 100644 --- a/packages/icons-editor/src/icons/AlignVertCenters.ts +++ b/packages/icons-editor/src/icons/AlignVertCenters.ts @@ -19,12 +19,14 @@ export const AlignVertCentersIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Animation.ts b/packages/icons-editor/src/icons/Animation.ts index aef590ee52c..4684bc5b053 100644 --- a/packages/icons-editor/src/icons/Animation.ts +++ b/packages/icons-editor/src/icons/Animation.ts @@ -19,13 +19,80 @@ export const AnimationIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > - + + + + + + + + + + + + + + + + + + + + + + + `; }; diff --git a/packages/icons-editor/src/icons/ArrowDown.ts b/packages/icons-editor/src/icons/ArrowDownSmall.ts similarity index 91% rename from packages/icons-editor/src/icons/ArrowDown.ts rename to packages/icons-editor/src/icons/ArrowDownSmall.ts index f4ca65038ec..b2a4926827a 100644 --- a/packages/icons-editor/src/icons/ArrowDown.ts +++ b/packages/icons-editor/src/icons/ArrowDownSmall.ts @@ -13,18 +13,20 @@ governing permissions and limitations under the License. import { tag as html, TemplateResult } from '../custom-tag.js'; export { setCustomTemplateLiteralTag } from '../custom-tag.js'; -export const ArrowDownIcon = (): string | TemplateResult => { +export const ArrowDownSmallIcon = (): string | TemplateResult => { return html` `; diff --git a/packages/icons-editor/src/icons/ArrowLeft.ts b/packages/icons-editor/src/icons/ArrowLeft.ts index 368ecbe9439..21ce340f075 100644 --- a/packages/icons-editor/src/icons/ArrowLeft.ts +++ b/packages/icons-editor/src/icons/ArrowLeft.ts @@ -19,12 +19,14 @@ export const ArrowLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/ArrowRight.ts b/packages/icons-editor/src/icons/ArrowRight.ts index c9f71688b3e..1d1fcd09e01 100644 --- a/packages/icons-editor/src/icons/ArrowRight.ts +++ b/packages/icons-editor/src/icons/ArrowRight.ts @@ -19,12 +19,14 @@ export const ArrowRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/ArrowRightSmall.ts b/packages/icons-editor/src/icons/ArrowRightSmall.ts new file mode 100644 index 00000000000..3614aef5366 --- /dev/null +++ b/packages/icons-editor/src/icons/ArrowRightSmall.ts @@ -0,0 +1,33 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { tag as html, TemplateResult } from '../custom-tag.js'; +export { setCustomTemplateLiteralTag } from '../custom-tag.js'; +export const ArrowRightSmallIcon = (): string | TemplateResult => { + return html` + + + + `; +}; diff --git a/packages/icons-editor/src/icons/ArrowTriangle.ts b/packages/icons-editor/src/icons/ArrowTriangle.ts index 8dd2241302f..06af5beb099 100644 --- a/packages/icons-editor/src/icons/ArrowTriangle.ts +++ b/packages/icons-editor/src/icons/ArrowTriangle.ts @@ -19,14 +19,15 @@ export const ArrowTriangleIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > - + - + diff --git a/packages/icons-editor/src/icons/Backspace.ts b/packages/icons-editor/src/icons/Backspace.ts index 424dcd67146..e5b12af78b3 100644 --- a/packages/icons-editor/src/icons/Backspace.ts +++ b/packages/icons-editor/src/icons/Backspace.ts @@ -19,12 +19,14 @@ export const BackspaceIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Check.ts b/packages/icons-editor/src/icons/Check.ts index 222d38dba76..804cf71c1a3 100644 --- a/packages/icons-editor/src/icons/Check.ts +++ b/packages/icons-editor/src/icons/Check.ts @@ -19,12 +19,14 @@ export const CheckIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/CheckFill.ts b/packages/icons-editor/src/icons/CheckFill.ts index c07acdef133..0b26c96b4e8 100644 --- a/packages/icons-editor/src/icons/CheckFill.ts +++ b/packages/icons-editor/src/icons/CheckFill.ts @@ -19,12 +19,14 @@ export const CheckFillIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Clear.ts b/packages/icons-editor/src/icons/Clear.ts index 956dd3d0d1f..a55eeb70774 100644 --- a/packages/icons-editor/src/icons/Clear.ts +++ b/packages/icons-editor/src/icons/Clear.ts @@ -19,12 +19,14 @@ export const ClearIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Close.ts b/packages/icons-editor/src/icons/Close.ts index e9135c2c0bc..84c7121e1ad 100644 --- a/packages/icons-editor/src/icons/Close.ts +++ b/packages/icons-editor/src/icons/Close.ts @@ -19,12 +19,14 @@ export const CloseIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/CloseFull.ts b/packages/icons-editor/src/icons/CloseFull.ts index 37d417eb811..0aacff25a5b 100644 --- a/packages/icons-editor/src/icons/CloseFull.ts +++ b/packages/icons-editor/src/icons/CloseFull.ts @@ -19,6 +19,7 @@ export const CloseFullIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -26,11 +27,12 @@ export const CloseFullIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M13 11.75L21 11.75V10.25L14.8107 10.25L21.5303 3.53033L20.4697 2.46967L13.75 9.18934V3L12.25 3V11C12.25 11.1989 12.329 11.3897 12.4697 11.5303C12.6103 11.671 12.8011 11.75 13 11.75ZM11 12.25L3 12.25V13.75L9.18933 13.75L2.46967 20.4697L3.53033 21.5303L10.25 14.8107L10.25 21H11.75V13C11.75 12.8011 11.671 12.6103 11.5303 12.4697C11.3897 12.329 11.1989 12.25 11 12.25Z" + fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/CloudDone.ts b/packages/icons-editor/src/icons/CloudDone.ts index 76bacceab66..35951d99c84 100644 --- a/packages/icons-editor/src/icons/CloudDone.ts +++ b/packages/icons-editor/src/icons/CloudDone.ts @@ -19,12 +19,14 @@ export const CloudDoneIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/CloudOff.ts b/packages/icons-editor/src/icons/CloudOff.ts index 6ddc24227b3..445e95f224d 100644 --- a/packages/icons-editor/src/icons/CloudOff.ts +++ b/packages/icons-editor/src/icons/CloudOff.ts @@ -19,12 +19,14 @@ export const CloudOffIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Colorpicker.ts b/packages/icons-editor/src/icons/Colorpicker.ts index 6e162b9381d..ea7816430dd 100644 --- a/packages/icons-editor/src/icons/Colorpicker.ts +++ b/packages/icons-editor/src/icons/Colorpicker.ts @@ -19,12 +19,14 @@ export const ColorpickerIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Command.ts b/packages/icons-editor/src/icons/Command.ts index 3c45ca14fcf..874b4ae6bd6 100644 --- a/packages/icons-editor/src/icons/Command.ts +++ b/packages/icons-editor/src/icons/Command.ts @@ -19,12 +19,14 @@ export const CommandIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Contacts.ts b/packages/icons-editor/src/icons/Contacts.ts index bd6a68d68f8..969f323de91 100644 --- a/packages/icons-editor/src/icons/Contacts.ts +++ b/packages/icons-editor/src/icons/Contacts.ts @@ -19,12 +19,14 @@ export const ContactsIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Container.ts b/packages/icons-editor/src/icons/Container.ts index e42c7eaebf9..bb187e1e595 100644 --- a/packages/icons-editor/src/icons/Container.ts +++ b/packages/icons-editor/src/icons/Container.ts @@ -19,12 +19,14 @@ export const ContainerIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Copy.ts b/packages/icons-editor/src/icons/Copy.ts new file mode 100644 index 00000000000..db4b2ff0135 --- /dev/null +++ b/packages/icons-editor/src/icons/Copy.ts @@ -0,0 +1,33 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { tag as html, TemplateResult } from '../custom-tag.js'; +export { setCustomTemplateLiteralTag } from '../custom-tag.js'; +export const CopyIcon = (): string | TemplateResult => { + return html` + + + + `; +}; diff --git a/packages/icons-editor/src/icons/Corner.ts b/packages/icons-editor/src/icons/Corner.ts index 223eda4c970..f00a7687842 100644 --- a/packages/icons-editor/src/icons/Corner.ts +++ b/packages/icons-editor/src/icons/Corner.ts @@ -19,12 +19,14 @@ export const CornerIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/CornerRadiusBottomLeft.ts b/packages/icons-editor/src/icons/CornerRadiusBottomLeft.ts index 33ff00ec0e4..7becc96ea5e 100644 --- a/packages/icons-editor/src/icons/CornerRadiusBottomLeft.ts +++ b/packages/icons-editor/src/icons/CornerRadiusBottomLeft.ts @@ -19,12 +19,14 @@ export const CornerRadiusBottomLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/CornerRadiusBottomRight.ts b/packages/icons-editor/src/icons/CornerRadiusBottomRight.ts index cb417447e5c..d306cf6e3dd 100644 --- a/packages/icons-editor/src/icons/CornerRadiusBottomRight.ts +++ b/packages/icons-editor/src/icons/CornerRadiusBottomRight.ts @@ -19,12 +19,14 @@ export const CornerRadiusBottomRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/CornerRadiusTopLeft.ts b/packages/icons-editor/src/icons/CornerRadiusTopLeft.ts index e510d2eaeb8..c163a761682 100644 --- a/packages/icons-editor/src/icons/CornerRadiusTopLeft.ts +++ b/packages/icons-editor/src/icons/CornerRadiusTopLeft.ts @@ -19,12 +19,14 @@ export const CornerRadiusTopLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/CornerRadiusTopRight.ts b/packages/icons-editor/src/icons/CornerRadiusTopRight.ts index adf7647db78..16e46f4055d 100644 --- a/packages/icons-editor/src/icons/CornerRadiusTopRight.ts +++ b/packages/icons-editor/src/icons/CornerRadiusTopRight.ts @@ -19,12 +19,14 @@ export const CornerRadiusTopRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Crop.ts b/packages/icons-editor/src/icons/Crop.ts index f62b8057880..47fe3203806 100644 --- a/packages/icons-editor/src/icons/Crop.ts +++ b/packages/icons-editor/src/icons/Crop.ts @@ -16,21 +16,17 @@ export { setCustomTemplateLiteralTag } from '../custom-tag.js'; export const CropIcon = (): string | TemplateResult => { return html` - - `; diff --git a/packages/icons-editor/src/icons/DataBarchart.ts b/packages/icons-editor/src/icons/DataBarchart.ts index b9cece48ab8..a79074058db 100644 --- a/packages/icons-editor/src/icons/DataBarchart.ts +++ b/packages/icons-editor/src/icons/DataBarchart.ts @@ -19,12 +19,14 @@ export const DataBarchartIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Delete.ts b/packages/icons-editor/src/icons/Delete.ts new file mode 100644 index 00000000000..b4758843f2b --- /dev/null +++ b/packages/icons-editor/src/icons/Delete.ts @@ -0,0 +1,37 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { tag as html, TemplateResult } from '../custom-tag.js'; +export { setCustomTemplateLiteralTag } from '../custom-tag.js'; +export const DeleteIcon = (): string | TemplateResult => { + return html` + + + + + `; +}; diff --git a/packages/icons-editor/src/icons/Desktop.ts b/packages/icons-editor/src/icons/Desktop.ts index 88510ef9987..489bf30493b 100644 --- a/packages/icons-editor/src/icons/Desktop.ts +++ b/packages/icons-editor/src/icons/Desktop.ts @@ -19,12 +19,14 @@ export const DesktopIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/DirectionCenter.ts b/packages/icons-editor/src/icons/DirectionCenter.ts index 180fabd022c..6c688d28a81 100644 --- a/packages/icons-editor/src/icons/DirectionCenter.ts +++ b/packages/icons-editor/src/icons/DirectionCenter.ts @@ -19,12 +19,14 @@ export const DirectionCenterIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/DirectionDown.ts b/packages/icons-editor/src/icons/DirectionDown.ts index 952d15d8e65..4289b60fdc4 100644 --- a/packages/icons-editor/src/icons/DirectionDown.ts +++ b/packages/icons-editor/src/icons/DirectionDown.ts @@ -19,12 +19,14 @@ export const DirectionDownIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/DirectionLeft.ts b/packages/icons-editor/src/icons/DirectionLeft.ts index 138ec3ad76e..6f90b13f6af 100644 --- a/packages/icons-editor/src/icons/DirectionLeft.ts +++ b/packages/icons-editor/src/icons/DirectionLeft.ts @@ -19,12 +19,14 @@ export const DirectionLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/DirectionRight.ts b/packages/icons-editor/src/icons/DirectionRight.ts index 5e455c4ad95..42dabeafa74 100644 --- a/packages/icons-editor/src/icons/DirectionRight.ts +++ b/packages/icons-editor/src/icons/DirectionRight.ts @@ -19,12 +19,14 @@ export const DirectionRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/DirectionUp.ts b/packages/icons-editor/src/icons/DirectionUp.ts index 6fee7924fdb..49fc91dd71d 100644 --- a/packages/icons-editor/src/icons/DirectionUp.ts +++ b/packages/icons-editor/src/icons/DirectionUp.ts @@ -19,12 +19,14 @@ export const DirectionUpIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Display.ts b/packages/icons-editor/src/icons/Display.ts index 642e49826d5..b8e58aae59a 100644 --- a/packages/icons-editor/src/icons/Display.ts +++ b/packages/icons-editor/src/icons/Display.ts @@ -19,14 +19,15 @@ export const DisplayIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > - + - + diff --git a/packages/icons-editor/src/icons/Done.ts b/packages/icons-editor/src/icons/Done.ts index 62b4273071c..dec4f950812 100644 --- a/packages/icons-editor/src/icons/Done.ts +++ b/packages/icons-editor/src/icons/Done.ts @@ -19,12 +19,14 @@ export const DoneIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/DragHandle.ts b/packages/icons-editor/src/icons/DragHandle.ts index bac1284a810..10b5d08e078 100644 --- a/packages/icons-editor/src/icons/DragHandle.ts +++ b/packages/icons-editor/src/icons/DragHandle.ts @@ -19,6 +19,7 @@ export const DragHandleIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -26,11 +27,12 @@ export const DragHandleIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M13.5 7C13.5 7.82843 14.1716 8.5 15 8.5C15.8284 8.5 16.5 7.82843 16.5 7C16.5 6.17157 15.8284 5.5 15 5.5C14.1716 5.5 13.5 6.17157 13.5 7ZM9 18.5C8.17157 18.5 7.5 17.8284 7.5 17C7.5 16.1716 8.17157 15.5 9 15.5C9.82843 15.5 10.5 16.1716 10.5 17C10.5 17.8284 9.82843 18.5 9 18.5ZM7.5 7C7.5 7.82843 8.17157 8.5 9 8.5C9.82843 8.5 10.5 7.82843 10.5 7C10.5 6.17157 9.82843 5.5 9 5.5C8.17157 5.5 7.5 6.17157 7.5 7ZM7.5 12C7.5 12.8284 8.17157 13.5 9 13.5C9.82843 13.5 10.5 12.8284 10.5 12C10.5 11.1716 9.82843 10.5 9 10.5C8.17157 10.5 7.5 11.1716 7.5 12ZM15 13.5C14.1716 13.5 13.5 12.8284 13.5 12C13.5 11.1716 14.1716 10.5 15 10.5C15.8284 10.5 16.5 11.1716 16.5 12C16.5 12.8284 15.8284 13.5 15 13.5ZM13.5 17C13.5 17.8284 14.1716 18.5 15 18.5C15.8284 18.5 16.5 17.8284 16.5 17C16.5 16.1716 15.8284 15.5 15 15.5C14.1716 15.5 13.5 16.1716 13.5 17Z" + fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/Earth.ts b/packages/icons-editor/src/icons/Earth.ts index 49acc23047f..397c5387784 100644 --- a/packages/icons-editor/src/icons/Earth.ts +++ b/packages/icons-editor/src/icons/Earth.ts @@ -19,12 +19,14 @@ export const EarthIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Easeincubic.ts b/packages/icons-editor/src/icons/Easeincubic.ts index 9834e4ef6cf..7c6acae20bb 100644 --- a/packages/icons-editor/src/icons/Easeincubic.ts +++ b/packages/icons-editor/src/icons/Easeincubic.ts @@ -13,18 +13,20 @@ governing permissions and limitations under the License. import { tag as html, TemplateResult } from '../custom-tag.js'; export { setCustomTemplateLiteralTag } from '../custom-tag.js'; -export const EaseincubicIcon = (): string | TemplateResult => { +export const EaseinCubicIcon = (): string | TemplateResult => { return html` `; diff --git a/packages/icons-editor/src/icons/Easeinoutcubic.ts b/packages/icons-editor/src/icons/Easeinoutcubic.ts index 8fd8a9b92d0..d6194b41e08 100644 --- a/packages/icons-editor/src/icons/Easeinoutcubic.ts +++ b/packages/icons-editor/src/icons/Easeinoutcubic.ts @@ -13,18 +13,20 @@ governing permissions and limitations under the License. import { tag as html, TemplateResult } from '../custom-tag.js'; export { setCustomTemplateLiteralTag } from '../custom-tag.js'; -export const EaseinoutcubicIcon = (): string | TemplateResult => { +export const EaseinoutCubicIcon = (): string | TemplateResult => { return html` `; diff --git a/packages/icons-editor/src/icons/Easeinquad.ts b/packages/icons-editor/src/icons/Easeinquad.ts index 28d1f4ad544..bbb4246ebe6 100644 --- a/packages/icons-editor/src/icons/Easeinquad.ts +++ b/packages/icons-editor/src/icons/Easeinquad.ts @@ -13,18 +13,20 @@ governing permissions and limitations under the License. import { tag as html, TemplateResult } from '../custom-tag.js'; export { setCustomTemplateLiteralTag } from '../custom-tag.js'; -export const EaseinquadIcon = (): string | TemplateResult => { +export const EaseinQuadIcon = (): string | TemplateResult => { return html` `; diff --git a/packages/icons-editor/src/icons/Easeoutback.ts b/packages/icons-editor/src/icons/Easeoutback.ts index e435bcda56d..428398c19ae 100644 --- a/packages/icons-editor/src/icons/Easeoutback.ts +++ b/packages/icons-editor/src/icons/Easeoutback.ts @@ -13,18 +13,20 @@ governing permissions and limitations under the License. import { tag as html, TemplateResult } from '../custom-tag.js'; export { setCustomTemplateLiteralTag } from '../custom-tag.js'; -export const EaseoutbackIcon = (): string | TemplateResult => { +export const EaseoutBackIcon = (): string | TemplateResult => { return html` `; diff --git a/packages/icons-editor/src/icons/Easeoutbounce.ts b/packages/icons-editor/src/icons/Easeoutbounce.ts index d0f2c11c43d..8db83e18ada 100644 --- a/packages/icons-editor/src/icons/Easeoutbounce.ts +++ b/packages/icons-editor/src/icons/Easeoutbounce.ts @@ -13,16 +13,18 @@ governing permissions and limitations under the License. import { tag as html, TemplateResult } from '../custom-tag.js'; export { setCustomTemplateLiteralTag } from '../custom-tag.js'; -export const EaseoutbounceIcon = (): string | TemplateResult => { +export const EaseoutBounceIcon = (): string | TemplateResult => { return html` `; diff --git a/packages/icons-editor/src/icons/Easeoutcubic.ts b/packages/icons-editor/src/icons/Easeoutcubic.ts index 95edb23fd37..7304d29b35c 100644 --- a/packages/icons-editor/src/icons/Easeoutcubic.ts +++ b/packages/icons-editor/src/icons/Easeoutcubic.ts @@ -13,18 +13,20 @@ governing permissions and limitations under the License. import { tag as html, TemplateResult } from '../custom-tag.js'; export { setCustomTemplateLiteralTag } from '../custom-tag.js'; -export const EaseoutcubicIcon = (): string | TemplateResult => { +export const EaseoutCubicIcon = (): string | TemplateResult => { return html` `; diff --git a/packages/icons-editor/src/icons/Easeoutelastic.ts b/packages/icons-editor/src/icons/Easeoutelastic.ts index a8ec6d22945..f4cdd6781ef 100644 --- a/packages/icons-editor/src/icons/Easeoutelastic.ts +++ b/packages/icons-editor/src/icons/Easeoutelastic.ts @@ -13,18 +13,20 @@ governing permissions and limitations under the License. import { tag as html, TemplateResult } from '../custom-tag.js'; export { setCustomTemplateLiteralTag } from '../custom-tag.js'; -export const EaseoutelasticIcon = (): string | TemplateResult => { +export const EaseoutElasticIcon = (): string | TemplateResult => { return html` `; diff --git a/packages/icons-editor/src/icons/Easeoutquad.ts b/packages/icons-editor/src/icons/Easeoutquad.ts index 81c7804c535..23693dafb97 100644 --- a/packages/icons-editor/src/icons/Easeoutquad.ts +++ b/packages/icons-editor/src/icons/Easeoutquad.ts @@ -13,18 +13,20 @@ governing permissions and limitations under the License. import { tag as html, TemplateResult } from '../custom-tag.js'; export { setCustomTemplateLiteralTag } from '../custom-tag.js'; -export const EaseoutquadIcon = (): string | TemplateResult => { +export const EaseoutQuadIcon = (): string | TemplateResult => { return html` `; diff --git a/packages/icons-editor/src/icons/Edit.ts b/packages/icons-editor/src/icons/Edit.ts index ba6d7db7b5f..44a702742ec 100644 --- a/packages/icons-editor/src/icons/Edit.ts +++ b/packages/icons-editor/src/icons/Edit.ts @@ -19,6 +19,7 @@ export const EditIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -26,11 +27,12 @@ export const EditIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M16.3497 2.9948C17.2284 2.11612 18.653 2.11612 19.5317 2.9948L20.9459 4.40901C21.8246 5.28769 21.8246 6.71231 20.9459 7.59099L7.08051 21.4564C6.96556 21.5714 6.81637 21.6459 6.65541 21.6687L2.60525 22.2426C2.37392 22.2754 2.14054 22.1985 1.974 22.0346C1.80746 21.8707 1.7268 21.6386 1.75583 21.4068L2.27046 17.2974C2.29118 17.1319 2.36643 16.9781 2.48432 16.8602L16.3497 2.9948ZM18.0104 8.40518L15.5356 5.93031L3.72687 17.739L3.36611 20.6198L6.19696 20.2186L18.0104 8.40518Z" + fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/Effect.ts b/packages/icons-editor/src/icons/Effect.ts index de0d4c96e53..53841c83e18 100644 --- a/packages/icons-editor/src/icons/Effect.ts +++ b/packages/icons-editor/src/icons/Effect.ts @@ -19,13 +19,16 @@ export const EffectIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Event.ts b/packages/icons-editor/src/icons/Event.ts index 8e03a7f6e07..2d425ad2468 100644 --- a/packages/icons-editor/src/icons/Event.ts +++ b/packages/icons-editor/src/icons/Event.ts @@ -19,6 +19,7 @@ export const EventIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -26,11 +27,12 @@ export const EventIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M20.1872 3.81281C20.3881 4.01368 20.4582 4.31081 20.3684 4.58031L14.7115 21.5509C14.6094 21.8571 14.3228 22.0637 14 22.0637C13.6772 22.0637 13.3906 21.8571 13.2885 21.5509L10.5786 13.4213L2.44913 10.7115C2.14287 10.6094 1.9363 10.3228 1.9363 10C1.9363 9.67718 2.14287 9.39057 2.44913 9.28849L19.4197 3.63162C19.6892 3.54179 19.9863 3.61193 20.1872 3.81281ZM5.05801 10L11.4087 12.1169C11.6327 12.1916 11.8084 12.3673 11.8831 12.5912L14 18.942L18.471 5.52899L5.05801 10Z" + fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/Eye.ts b/packages/icons-editor/src/icons/Eye.ts index 7e1099e3623..ef17fd1263f 100644 --- a/packages/icons-editor/src/icons/Eye.ts +++ b/packages/icons-editor/src/icons/Eye.ts @@ -19,12 +19,14 @@ export const EyeIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/EyeDisplay.ts b/packages/icons-editor/src/icons/EyeDisplay.ts index 2b8b5d623fc..8c69b8b85a2 100644 --- a/packages/icons-editor/src/icons/EyeDisplay.ts +++ b/packages/icons-editor/src/icons/EyeDisplay.ts @@ -19,12 +19,14 @@ export const EyeDisplayIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/EyeOff.ts b/packages/icons-editor/src/icons/EyeOff.ts index ef78026efaa..1468fca4a3d 100644 --- a/packages/icons-editor/src/icons/EyeOff.ts +++ b/packages/icons-editor/src/icons/EyeOff.ts @@ -19,12 +19,14 @@ export const EyeOffIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Figma.ts b/packages/icons-editor/src/icons/Figma.ts index cbca655fc9f..f42e0b27ea7 100644 --- a/packages/icons-editor/src/icons/Figma.ts +++ b/packages/icons-editor/src/icons/Figma.ts @@ -19,12 +19,14 @@ export const FigmaIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FigmaStatic.ts b/packages/icons-editor/src/icons/FigmaStatic.ts new file mode 100644 index 00000000000..0ec17d84160 --- /dev/null +++ b/packages/icons-editor/src/icons/FigmaStatic.ts @@ -0,0 +1,59 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { tag as html, TemplateResult } from '../custom-tag.js'; +export { setCustomTemplateLiteralTag } from '../custom-tag.js'; +export const FigmaStaticIcon = (): string | TemplateResult => { + return html` + + + + + + + + + + + + + + + `; +}; diff --git a/packages/icons-editor/src/icons/FileFolder.ts b/packages/icons-editor/src/icons/FileFolder.ts index ed7386dfc24..6e9ea246d4e 100644 --- a/packages/icons-editor/src/icons/FileFolder.ts +++ b/packages/icons-editor/src/icons/FileFolder.ts @@ -19,12 +19,14 @@ export const FileFolderIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FileOutline.ts b/packages/icons-editor/src/icons/FileOutline.ts index f6040922773..b2b6d9642f5 100644 --- a/packages/icons-editor/src/icons/FileOutline.ts +++ b/packages/icons-editor/src/icons/FileOutline.ts @@ -19,10 +19,12 @@ export const FileOutlineIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Fixed.ts b/packages/icons-editor/src/icons/Fixed.ts index eda339313ab..99ba096ff14 100644 --- a/packages/icons-editor/src/icons/Fixed.ts +++ b/packages/icons-editor/src/icons/Fixed.ts @@ -19,6 +19,7 @@ export const FixedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -26,11 +27,12 @@ export const FixedIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M14.616 3.67827C15.5113 3.02993 16.745 3.128 17.5266 3.90964L19.9604 6.34339C20.742 7.12504 20.8401 8.35871 20.1918 9.25403L13.8924 17.9531L15.5615 19.6222L14.5009 20.6829L9.37436 15.5563L3.18718 21.7435L2.12652 20.6829L8.3137 14.4957L3.18718 9.36916L4.24784 8.3085L5.91693 9.9776L14.616 3.67827ZM6.99108 11.0517L12.8183 16.879L18.164 9.49676L14.3733 5.70602L6.99108 11.0517Z" + fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/Focus.ts b/packages/icons-editor/src/icons/Focus.ts index aba999cf38e..e57659a8e76 100644 --- a/packages/icons-editor/src/icons/Focus.ts +++ b/packages/icons-editor/src/icons/Focus.ts @@ -19,12 +19,14 @@ export const FocusIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatAlignBottom.ts b/packages/icons-editor/src/icons/FormatAlignBottom.ts index 16c9152dfd8..93518b8b813 100644 --- a/packages/icons-editor/src/icons/FormatAlignBottom.ts +++ b/packages/icons-editor/src/icons/FormatAlignBottom.ts @@ -19,12 +19,14 @@ export const FormatAlignBottomIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatAlignMedium.ts b/packages/icons-editor/src/icons/FormatAlignMedium.ts index 958988ababa..e1dd0c2973b 100644 --- a/packages/icons-editor/src/icons/FormatAlignMedium.ts +++ b/packages/icons-editor/src/icons/FormatAlignMedium.ts @@ -19,12 +19,14 @@ export const FormatAlignMediumIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatAlignTop.ts b/packages/icons-editor/src/icons/FormatAlignTop.ts index 15deeeb04d6..514a86a6871 100644 --- a/packages/icons-editor/src/icons/FormatAlignTop.ts +++ b/packages/icons-editor/src/icons/FormatAlignTop.ts @@ -19,12 +19,14 @@ export const FormatAlignTopIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatCenter.ts b/packages/icons-editor/src/icons/FormatCenter.ts index e2a9dc64dda..2c735b62b91 100644 --- a/packages/icons-editor/src/icons/FormatCenter.ts +++ b/packages/icons-editor/src/icons/FormatCenter.ts @@ -19,12 +19,14 @@ export const FormatCenterIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatIndentDecrease.ts b/packages/icons-editor/src/icons/FormatIndentDecrease.ts index 9ec329a5d43..446677af29e 100644 --- a/packages/icons-editor/src/icons/FormatIndentDecrease.ts +++ b/packages/icons-editor/src/icons/FormatIndentDecrease.ts @@ -19,12 +19,14 @@ export const FormatIndentDecreaseIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatIndentIncrease.ts b/packages/icons-editor/src/icons/FormatIndentIncrease.ts index e25507b5f33..71a803e5d53 100644 --- a/packages/icons-editor/src/icons/FormatIndentIncrease.ts +++ b/packages/icons-editor/src/icons/FormatIndentIncrease.ts @@ -19,6 +19,7 @@ export const FormatIndentIncreaseIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -26,11 +27,12 @@ export const FormatIndentIncreaseIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M4.31066 3.96973L8.31066 7.96973C8.60355 8.26262 8.60355 8.73749 8.31066 9.03039L4.31066 13.0304L3.25 11.9697L6.71967 8.50006L3.25 5.03039L4.31066 3.96973ZM12 5.75006H21V4.25006H12V5.75006ZM12 12.7501H21V11.2501H12V12.7501ZM21 18.2501V19.7501H3V18.2501H21Z" + fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/FormatJustified.ts b/packages/icons-editor/src/icons/FormatJustified.ts index 011bbe7eb11..ce1e2685e04 100644 --- a/packages/icons-editor/src/icons/FormatJustified.ts +++ b/packages/icons-editor/src/icons/FormatJustified.ts @@ -19,12 +19,14 @@ export const FormatJustifiedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatLeft.ts b/packages/icons-editor/src/icons/FormatLeft.ts index 52eb13c018b..f419c35e030 100644 --- a/packages/icons-editor/src/icons/FormatLeft.ts +++ b/packages/icons-editor/src/icons/FormatLeft.ts @@ -19,12 +19,14 @@ export const FormatLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatListBulleted.ts b/packages/icons-editor/src/icons/FormatListBulleted.ts index 1a802be1840..9c418a23dbb 100644 --- a/packages/icons-editor/src/icons/FormatListBulleted.ts +++ b/packages/icons-editor/src/icons/FormatListBulleted.ts @@ -19,12 +19,14 @@ export const FormatListBulletedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatListNumbered.ts b/packages/icons-editor/src/icons/FormatListNumbered.ts index 8782aab3498..aa66e94a766 100644 --- a/packages/icons-editor/src/icons/FormatListNumbered.ts +++ b/packages/icons-editor/src/icons/FormatListNumbered.ts @@ -19,15 +19,18 @@ export const FormatListNumberedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatPacingLines.ts b/packages/icons-editor/src/icons/FormatPacingLines.ts index 5873e15bf3b..ef3c2fea583 100644 --- a/packages/icons-editor/src/icons/FormatPacingLines.ts +++ b/packages/icons-editor/src/icons/FormatPacingLines.ts @@ -19,12 +19,14 @@ export const FormatPacingLinesIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatRight.ts b/packages/icons-editor/src/icons/FormatRight.ts index 5c61c5ceefe..4ca86ab57f2 100644 --- a/packages/icons-editor/src/icons/FormatRight.ts +++ b/packages/icons-editor/src/icons/FormatRight.ts @@ -19,12 +19,14 @@ export const FormatRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatSpacingLetter.ts b/packages/icons-editor/src/icons/FormatSpacingLetter.ts index 1fb17b741c7..1d2fb700636 100644 --- a/packages/icons-editor/src/icons/FormatSpacingLetter.ts +++ b/packages/icons-editor/src/icons/FormatSpacingLetter.ts @@ -19,12 +19,14 @@ export const FormatSpacingLetterIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Global.ts b/packages/icons-editor/src/icons/Global.ts index 97746faff85..bf34ad7d833 100644 --- a/packages/icons-editor/src/icons/Global.ts +++ b/packages/icons-editor/src/icons/Global.ts @@ -19,12 +19,14 @@ export const GlobalIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/GridOutline.ts b/packages/icons-editor/src/icons/GridOutline.ts index 9e7cc6f127d..fe7bbf731d9 100644 --- a/packages/icons-editor/src/icons/GridOutline.ts +++ b/packages/icons-editor/src/icons/GridOutline.ts @@ -19,10 +19,12 @@ export const GridOutlineIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/HeightFill.ts b/packages/icons-editor/src/icons/HeightFill.ts index efb892dadf7..cba7e8aab7b 100644 --- a/packages/icons-editor/src/icons/HeightFill.ts +++ b/packages/icons-editor/src/icons/HeightFill.ts @@ -19,12 +19,14 @@ export const HeightFillIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/HeightFixed.ts b/packages/icons-editor/src/icons/HeightFixed.ts index f2174bac90a..3f9f3fb2fce 100644 --- a/packages/icons-editor/src/icons/HeightFixed.ts +++ b/packages/icons-editor/src/icons/HeightFixed.ts @@ -19,12 +19,14 @@ export const HeightFixedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/HeightHug.ts b/packages/icons-editor/src/icons/HeightHug.ts index a8e7f41d263..eab6de2b720 100644 --- a/packages/icons-editor/src/icons/HeightHug.ts +++ b/packages/icons-editor/src/icons/HeightHug.ts @@ -19,12 +19,14 @@ export const HeightHugIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Help.ts b/packages/icons-editor/src/icons/Help.ts index 788d99cbae8..aacd080596a 100644 --- a/packages/icons-editor/src/icons/Help.ts +++ b/packages/icons-editor/src/icons/Help.ts @@ -19,12 +19,14 @@ export const HelpIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/HelpFill.ts b/packages/icons-editor/src/icons/HelpFill.ts index 80e41e38525..93f88ac5db2 100644 --- a/packages/icons-editor/src/icons/HelpFill.ts +++ b/packages/icons-editor/src/icons/HelpFill.ts @@ -19,12 +19,14 @@ export const HelpFillIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Home.ts b/packages/icons-editor/src/icons/Home.ts index e2a58a8aebf..39b0b7a9e61 100644 --- a/packages/icons-editor/src/icons/Home.ts +++ b/packages/icons-editor/src/icons/Home.ts @@ -19,12 +19,14 @@ export const HomeIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/HorizBottom.ts b/packages/icons-editor/src/icons/HorizBottom.ts index 1a77e131802..54215ea9a2f 100644 --- a/packages/icons-editor/src/icons/HorizBottom.ts +++ b/packages/icons-editor/src/icons/HorizBottom.ts @@ -19,12 +19,14 @@ export const HorizBottomIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/HorizCenters.ts b/packages/icons-editor/src/icons/HorizCenters.ts index b5e2ec000bc..f4f9da4e010 100644 --- a/packages/icons-editor/src/icons/HorizCenters.ts +++ b/packages/icons-editor/src/icons/HorizCenters.ts @@ -19,12 +19,14 @@ export const HorizCentersIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/HorizTop.ts b/packages/icons-editor/src/icons/HorizTop.ts index 51d0859fcc7..7e6a0880e42 100644 --- a/packages/icons-editor/src/icons/HorizTop.ts +++ b/packages/icons-editor/src/icons/HorizTop.ts @@ -19,12 +19,14 @@ export const HorizTopIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Image.ts b/packages/icons-editor/src/icons/Image.ts index 89a7696e2ee..b52705bb91d 100644 --- a/packages/icons-editor/src/icons/Image.ts +++ b/packages/icons-editor/src/icons/Image.ts @@ -19,12 +19,14 @@ export const ImageIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Import.ts b/packages/icons-editor/src/icons/Import.ts index cbcae238b87..063492b7462 100644 --- a/packages/icons-editor/src/icons/Import.ts +++ b/packages/icons-editor/src/icons/Import.ts @@ -19,12 +19,14 @@ export const ImportIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Info.ts b/packages/icons-editor/src/icons/Info.ts index 82a4a3b10ae..0f7c33ddddd 100644 --- a/packages/icons-editor/src/icons/Info.ts +++ b/packages/icons-editor/src/icons/Info.ts @@ -19,12 +19,14 @@ export const InfoIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/InfoFill.ts b/packages/icons-editor/src/icons/InfoFill.ts index 2ecca304eae..50300c6d595 100644 --- a/packages/icons-editor/src/icons/InfoFill.ts +++ b/packages/icons-editor/src/icons/InfoFill.ts @@ -19,12 +19,14 @@ export const InfoFillIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Inspire.ts b/packages/icons-editor/src/icons/Inspire.ts new file mode 100644 index 00000000000..4afc3b3f200 --- /dev/null +++ b/packages/icons-editor/src/icons/Inspire.ts @@ -0,0 +1,33 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { tag as html, TemplateResult } from '../custom-tag.js'; +export { setCustomTemplateLiteralTag } from '../custom-tag.js'; +export const InspireIcon = (): string | TemplateResult => { + return html` + + + + `; +}; diff --git a/packages/icons-editor/src/icons/LabelC.ts b/packages/icons-editor/src/icons/LabelC.ts index 991ce332436..dddf6e2de4a 100644 --- a/packages/icons-editor/src/icons/LabelC.ts +++ b/packages/icons-editor/src/icons/LabelC.ts @@ -19,10 +19,12 @@ export const LabelCIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelClosebracket.ts b/packages/icons-editor/src/icons/LabelClosebracket.ts index eda77cb921e..25f44012f3e 100644 --- a/packages/icons-editor/src/icons/LabelClosebracket.ts +++ b/packages/icons-editor/src/icons/LabelClosebracket.ts @@ -19,10 +19,12 @@ export const LabelClosebracketIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelD.ts b/packages/icons-editor/src/icons/LabelD.ts index 93541fbfc23..f05212f0fbb 100644 --- a/packages/icons-editor/src/icons/LabelD.ts +++ b/packages/icons-editor/src/icons/LabelD.ts @@ -19,10 +19,12 @@ export const LabelDIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelG.ts b/packages/icons-editor/src/icons/LabelG.ts index 0c92aa8c877..bbb4958c12d 100644 --- a/packages/icons-editor/src/icons/LabelG.ts +++ b/packages/icons-editor/src/icons/LabelG.ts @@ -19,10 +19,12 @@ export const LabelGIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelOpenbracket.ts b/packages/icons-editor/src/icons/LabelOpenbracket.ts index 66c085f231a..72d153723e9 100644 --- a/packages/icons-editor/src/icons/LabelOpenbracket.ts +++ b/packages/icons-editor/src/icons/LabelOpenbracket.ts @@ -19,10 +19,12 @@ export const LabelOpenbracketIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelV.ts b/packages/icons-editor/src/icons/LabelV.ts index bd83c207e57..39796ba10da 100644 --- a/packages/icons-editor/src/icons/LabelV.ts +++ b/packages/icons-editor/src/icons/LabelV.ts @@ -19,10 +19,12 @@ export const LabelVIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelX.ts b/packages/icons-editor/src/icons/LabelX.ts index ae7a8ba12bb..961fbf405ff 100644 --- a/packages/icons-editor/src/icons/LabelX.ts +++ b/packages/icons-editor/src/icons/LabelX.ts @@ -19,10 +19,12 @@ export const LabelXIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelY.ts b/packages/icons-editor/src/icons/LabelY.ts index b8d9f1c10ee..461e45dc28e 100644 --- a/packages/icons-editor/src/icons/LabelY.ts +++ b/packages/icons-editor/src/icons/LabelY.ts @@ -19,10 +19,12 @@ export const LabelYIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelZ.ts b/packages/icons-editor/src/icons/LabelZ.ts index 07c1c2ca1e2..7eec2d3590f 100644 --- a/packages/icons-editor/src/icons/LabelZ.ts +++ b/packages/icons-editor/src/icons/LabelZ.ts @@ -19,10 +19,12 @@ export const LabelZIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Layers.ts b/packages/icons-editor/src/icons/Layers.ts index 49c1e950e47..86670d29c6a 100644 --- a/packages/icons-editor/src/icons/Layers.ts +++ b/packages/icons-editor/src/icons/Layers.ts @@ -19,12 +19,14 @@ export const LayersIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LayoutHorz.ts b/packages/icons-editor/src/icons/LayoutHorz.ts index 29f16efaf07..bf9ca2763d0 100644 --- a/packages/icons-editor/src/icons/LayoutHorz.ts +++ b/packages/icons-editor/src/icons/LayoutHorz.ts @@ -19,12 +19,14 @@ export const LayoutHorzIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LayoutPageturn.ts b/packages/icons-editor/src/icons/LayoutPageturn.ts index 6160a81d519..98613d91309 100644 --- a/packages/icons-editor/src/icons/LayoutPageturn.ts +++ b/packages/icons-editor/src/icons/LayoutPageturn.ts @@ -19,12 +19,14 @@ export const LayoutPageturnIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LayoutSliding.ts b/packages/icons-editor/src/icons/LayoutSliding.ts index 64b7b8abc60..d5b2a8aa891 100644 --- a/packages/icons-editor/src/icons/LayoutSliding.ts +++ b/packages/icons-editor/src/icons/LayoutSliding.ts @@ -19,12 +19,14 @@ export const LayoutSlidingIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LayoutVert.ts b/packages/icons-editor/src/icons/LayoutVert.ts index 5a65e5db4a7..dc426394eb1 100644 --- a/packages/icons-editor/src/icons/LayoutVert.ts +++ b/packages/icons-editor/src/icons/LayoutVert.ts @@ -19,12 +19,14 @@ export const LayoutVertIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LayoutWrap.ts b/packages/icons-editor/src/icons/LayoutWrap.ts index e6f40709df7..026ec5b96df 100644 --- a/packages/icons-editor/src/icons/LayoutWrap.ts +++ b/packages/icons-editor/src/icons/LayoutWrap.ts @@ -19,12 +19,14 @@ export const LayoutWrapIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Linear.ts b/packages/icons-editor/src/icons/Linear.ts index 6fa3e54a3be..9ef97fcdf77 100644 --- a/packages/icons-editor/src/icons/Linear.ts +++ b/packages/icons-editor/src/icons/Linear.ts @@ -19,12 +19,14 @@ export const LinearIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Link.ts b/packages/icons-editor/src/icons/Link.ts index 008fff8a27e..0f361553678 100644 --- a/packages/icons-editor/src/icons/Link.ts +++ b/packages/icons-editor/src/icons/Link.ts @@ -19,12 +19,14 @@ export const LinkIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Loading.ts b/packages/icons-editor/src/icons/Loading.ts index 6c49d78be2a..e19375935a0 100644 --- a/packages/icons-editor/src/icons/Loading.ts +++ b/packages/icons-editor/src/icons/Loading.ts @@ -19,6 +19,7 @@ export const LoadingIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -26,6 +27,7 @@ export const LoadingIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21ZM19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 8.13401 8.13401 5 12 5C15.866 5 19 8.13401 19 12Z" + fill="url(#paint0_angular_919_758)" /> @@ -44,6 +46,7 @@ export const LoadingIcon = (): string | TemplateResult => { diff --git a/packages/icons-editor/src/icons/LoadingWhite.ts b/packages/icons-editor/src/icons/LoadingWhite.ts index 8824567b1bc..2400bde5141 100644 --- a/packages/icons-editor/src/icons/LoadingWhite.ts +++ b/packages/icons-editor/src/icons/LoadingWhite.ts @@ -19,6 +19,7 @@ export const LoadingWhiteIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -26,6 +27,7 @@ export const LoadingWhiteIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21ZM19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 8.13401 8.13401 5 12 5C15.866 5 19 8.13401 19 12Z" + fill="url(#paint0_angular_922_764)" /> @@ -44,6 +46,7 @@ export const LoadingWhiteIcon = (): string | TemplateResult => { diff --git a/packages/icons-editor/src/icons/Locate.ts b/packages/icons-editor/src/icons/Locate.ts new file mode 100644 index 00000000000..121093c1182 --- /dev/null +++ b/packages/icons-editor/src/icons/Locate.ts @@ -0,0 +1,33 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { tag as html, TemplateResult } from '../custom-tag.js'; +export { setCustomTemplateLiteralTag } from '../custom-tag.js'; +export const LocateIcon = (): string | TemplateResult => { + return html` + + + + `; +}; diff --git a/packages/icons-editor/src/icons/Locked.ts b/packages/icons-editor/src/icons/Locked.ts index 22bae2d1b53..f480d45611b 100644 --- a/packages/icons-editor/src/icons/Locked.ts +++ b/packages/icons-editor/src/icons/Locked.ts @@ -19,12 +19,14 @@ export const LockedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Materiel.ts b/packages/icons-editor/src/icons/Materiel.ts index e31913b29b2..64a56684fe4 100644 --- a/packages/icons-editor/src/icons/Materiel.ts +++ b/packages/icons-editor/src/icons/Materiel.ts @@ -19,6 +19,7 @@ export const MaterielIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -26,11 +27,12 @@ export const MaterielIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M3.75 6C3.75 4.75736 4.75736 3.75 6 3.75L9 3.75L15 3.75L18 3.75C19.2426 3.75 20.25 4.75736 20.25 6L20.25 11.25L3.75 11.25L3.75 6ZM3.75 12.75L3.75 18C3.75 19.2426 4.75736 20.25 6 20.25L9 20.25L15 20.25L18 20.25C19.2426 20.25 20.25 19.2426 20.25 18L20.25 12.75L3.75 12.75ZM6 2.25C3.92893 2.25 2.25 3.92893 2.25 6L2.25 18C2.25 20.0711 3.92893 21.75 6 21.75L9 21.75L15 21.75L18 21.75C20.0711 21.75 21.75 20.0711 21.75 18L21.75 6C21.75 3.92893 20.0711 2.25 18 2.25L15 2.25L9 2.25L6 2.25ZM8.5 7.5C8.5 8.19036 7.94036 8.75 7.25 8.75C6.55964 8.75 6 8.19036 6 7.5C6 6.80964 6.55964 6.25 7.25 6.25C7.94036 6.25 8.5 6.80964 8.5 7.5ZM7.25 17.75C7.94036 17.75 8.5 17.1904 8.5 16.5C8.5 15.8096 7.94036 15.25 7.25 15.25C6.55964 15.25 6 15.8096 6 16.5C6 17.1904 6.55964 17.75 7.25 17.75Z" + fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/Menu.ts b/packages/icons-editor/src/icons/Menu.ts index 984945194c2..6c1f09e4255 100644 --- a/packages/icons-editor/src/icons/Menu.ts +++ b/packages/icons-editor/src/icons/Menu.ts @@ -19,12 +19,14 @@ export const MenuIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/MoreHoriz.ts b/packages/icons-editor/src/icons/MoreHoriz.ts index 260fea46548..365230bb1fb 100644 --- a/packages/icons-editor/src/icons/MoreHoriz.ts +++ b/packages/icons-editor/src/icons/MoreHoriz.ts @@ -19,6 +19,7 @@ export const MoreHorizIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -26,11 +27,12 @@ export const MoreHorizIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M6.5 12C6.5 12.8284 5.82843 13.5 5 13.5C4.17157 13.5 3.5 12.8284 3.5 12C3.5 11.1716 4.17157 10.5 5 10.5C5.82843 10.5 6.5 11.1716 6.5 12ZM13.5 12C13.5 12.8284 12.8284 13.5 12 13.5C11.1716 13.5 10.5 12.8284 10.5 12C10.5 11.1716 11.1716 10.5 12 10.5C12.8284 10.5 13.5 11.1716 13.5 12ZM19 13.5C19.8284 13.5 20.5 12.8284 20.5 12C20.5 11.1716 19.8284 10.5 19 10.5C18.1716 10.5 17.5 11.1716 17.5 12C17.5 12.8284 18.1716 13.5 19 13.5Z" + fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/MouseClick.ts b/packages/icons-editor/src/icons/MouseClick.ts index 49551204f21..60fcd34d43a 100644 --- a/packages/icons-editor/src/icons/MouseClick.ts +++ b/packages/icons-editor/src/icons/MouseClick.ts @@ -19,12 +19,14 @@ export const MouseClickIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/MouseHover.ts b/packages/icons-editor/src/icons/MouseHover.ts index a25067cd681..742d1b371ce 100644 --- a/packages/icons-editor/src/icons/MouseHover.ts +++ b/packages/icons-editor/src/icons/MouseHover.ts @@ -19,12 +19,14 @@ export const MouseHoverIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Move.ts b/packages/icons-editor/src/icons/Move.ts index 48c01ec57d6..fdf2fa42585 100644 --- a/packages/icons-editor/src/icons/Move.ts +++ b/packages/icons-editor/src/icons/Move.ts @@ -19,12 +19,14 @@ export const MoveIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/None.ts b/packages/icons-editor/src/icons/None.ts index 5568c2e2874..ecd114bff47 100644 --- a/packages/icons-editor/src/icons/None.ts +++ b/packages/icons-editor/src/icons/None.ts @@ -19,12 +19,14 @@ export const NoneIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/OpenFull.ts b/packages/icons-editor/src/icons/OpenFull.ts index 3ccd40ce53a..1bfd4e7dc8a 100644 --- a/packages/icons-editor/src/icons/OpenFull.ts +++ b/packages/icons-editor/src/icons/OpenFull.ts @@ -19,6 +19,7 @@ export const OpenFullIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -26,11 +27,12 @@ export const OpenFullIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M5.81067 19.25L12 19.25L12 20.75L4.00001 20.75C3.80109 20.75 3.61033 20.671 3.46968 20.5303C3.32902 20.3897 3.25 20.1989 3.25 20L3.25 12L4.75 12L4.75 18.1894L18.1893 4.75001L12 4.75L12 3.25L20 3.25001C20.4142 3.25001 20.75 3.5858 20.75 4.00001L20.75 12L19.25 12L19.25 5.81067L5.81067 19.25Z" + fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/OpenInNew.ts b/packages/icons-editor/src/icons/OpenInNew.ts index a57724c2d1d..b6dd0d5709a 100644 --- a/packages/icons-editor/src/icons/OpenInNew.ts +++ b/packages/icons-editor/src/icons/OpenInNew.ts @@ -19,12 +19,14 @@ export const OpenInNewIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Option.ts b/packages/icons-editor/src/icons/Option.ts index 58e19073966..2ef1b75c9a1 100644 --- a/packages/icons-editor/src/icons/Option.ts +++ b/packages/icons-editor/src/icons/Option.ts @@ -19,12 +19,14 @@ export const OptionIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Padding.ts b/packages/icons-editor/src/icons/Padding.ts index 0ace99ae823..66d07d368c5 100644 --- a/packages/icons-editor/src/icons/Padding.ts +++ b/packages/icons-editor/src/icons/Padding.ts @@ -19,12 +19,14 @@ export const PaddingIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/PaddingBottom.ts b/packages/icons-editor/src/icons/PaddingBottom.ts index c36b516583b..de056570063 100644 --- a/packages/icons-editor/src/icons/PaddingBottom.ts +++ b/packages/icons-editor/src/icons/PaddingBottom.ts @@ -19,12 +19,14 @@ export const PaddingBottomIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/PaddingIndependent.ts b/packages/icons-editor/src/icons/PaddingIndependent.ts index 92861c94687..fae04165986 100644 --- a/packages/icons-editor/src/icons/PaddingIndependent.ts +++ b/packages/icons-editor/src/icons/PaddingIndependent.ts @@ -19,12 +19,14 @@ export const PaddingIndependentIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/PaddingLeft.ts b/packages/icons-editor/src/icons/PaddingLeft.ts index 202b21cfdc8..f923e4bc4a4 100644 --- a/packages/icons-editor/src/icons/PaddingLeft.ts +++ b/packages/icons-editor/src/icons/PaddingLeft.ts @@ -19,12 +19,14 @@ export const PaddingLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/PaddingRight.ts b/packages/icons-editor/src/icons/PaddingRight.ts index 518248125cc..abcc3383f18 100644 --- a/packages/icons-editor/src/icons/PaddingRight.ts +++ b/packages/icons-editor/src/icons/PaddingRight.ts @@ -19,12 +19,14 @@ export const PaddingRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/PaddingTop.ts b/packages/icons-editor/src/icons/PaddingTop.ts index 0ae1a8093ed..7dc759d1ef6 100644 --- a/packages/icons-editor/src/icons/PaddingTop.ts +++ b/packages/icons-editor/src/icons/PaddingTop.ts @@ -19,12 +19,14 @@ export const PaddingTopIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/PageFooter.ts b/packages/icons-editor/src/icons/PageFooter.ts index 90aabba00a0..38aa8b93b76 100644 --- a/packages/icons-editor/src/icons/PageFooter.ts +++ b/packages/icons-editor/src/icons/PageFooter.ts @@ -19,12 +19,14 @@ export const PageFooterIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/PageHeader.ts b/packages/icons-editor/src/icons/PageHeader.ts index cc6edad5182..a41dfde2087 100644 --- a/packages/icons-editor/src/icons/PageHeader.ts +++ b/packages/icons-editor/src/icons/PageHeader.ts @@ -19,12 +19,14 @@ export const PageHeaderIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Pages.ts b/packages/icons-editor/src/icons/Pages.ts index a6a15f21cd0..6216c2fb376 100644 --- a/packages/icons-editor/src/icons/Pages.ts +++ b/packages/icons-editor/src/icons/Pages.ts @@ -19,12 +19,14 @@ export const PagesIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Paragraph.ts b/packages/icons-editor/src/icons/Paragraph.ts index ba12deef5ba..8f886545b11 100644 --- a/packages/icons-editor/src/icons/Paragraph.ts +++ b/packages/icons-editor/src/icons/Paragraph.ts @@ -19,12 +19,14 @@ export const ParagraphIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Play.ts b/packages/icons-editor/src/icons/Play.ts index 58f14633935..25b3ba42387 100644 --- a/packages/icons-editor/src/icons/Play.ts +++ b/packages/icons-editor/src/icons/Play.ts @@ -19,12 +19,14 @@ export const PlayIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Publish.ts b/packages/icons-editor/src/icons/Publish.ts new file mode 100644 index 00000000000..40ba2b54a3f --- /dev/null +++ b/packages/icons-editor/src/icons/Publish.ts @@ -0,0 +1,33 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { tag as html, TemplateResult } from '../custom-tag.js'; +export { setCustomTemplateLiteralTag } from '../custom-tag.js'; +export const PublishIcon = (): string | TemplateResult => { + return html` + + + + `; +}; diff --git a/packages/icons-editor/src/icons/QrCode.ts b/packages/icons-editor/src/icons/QrCode.ts index c9bba250661..dbabe855fab 100644 --- a/packages/icons-editor/src/icons/QrCode.ts +++ b/packages/icons-editor/src/icons/QrCode.ts @@ -19,12 +19,14 @@ export const QrCodeIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/RadioButtonUnchecked.ts b/packages/icons-editor/src/icons/RadioButtonUnchecked.ts index 2fab78f75ff..99533fb5834 100644 --- a/packages/icons-editor/src/icons/RadioButtonUnchecked.ts +++ b/packages/icons-editor/src/icons/RadioButtonUnchecked.ts @@ -19,6 +19,7 @@ export const RadioButtonUncheckedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -26,6 +27,7 @@ export const RadioButtonUncheckedIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25ZM22.75 12C22.75 17.9371 17.9371 22.75 12 22.75C6.06294 22.75 1.25 17.9371 1.25 12C1.25 6.06294 6.06294 1.25 12 1.25C17.9371 1.25 22.75 6.06294 22.75 12Z" + fill="#1F1F1F" /> @@ -33,6 +35,7 @@ export const RadioButtonUncheckedIcon = (): string | TemplateResult => { diff --git a/packages/icons-editor/src/icons/Redo.ts b/packages/icons-editor/src/icons/Redo.ts index bac4225bb5b..e17b0b1406e 100644 --- a/packages/icons-editor/src/icons/Redo.ts +++ b/packages/icons-editor/src/icons/Redo.ts @@ -19,12 +19,14 @@ export const RedoIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Remove.ts b/packages/icons-editor/src/icons/Remove.ts index 3bc86c65aa7..aa1209fed6f 100644 --- a/packages/icons-editor/src/icons/Remove.ts +++ b/packages/icons-editor/src/icons/Remove.ts @@ -19,6 +19,7 @@ export const RemoveIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -26,11 +27,12 @@ export const RemoveIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M3 12.75L3 11.25L21 11.25L21 12.75L3 12.75Z" + fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/RotateLeft.ts b/packages/icons-editor/src/icons/RotateLeft.ts index f2a9ec5dce2..6d2be90adbe 100644 --- a/packages/icons-editor/src/icons/RotateLeft.ts +++ b/packages/icons-editor/src/icons/RotateLeft.ts @@ -19,12 +19,14 @@ export const RotateLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Scale.ts b/packages/icons-editor/src/icons/Scale.ts index 9237163c77c..4ae0941958b 100644 --- a/packages/icons-editor/src/icons/Scale.ts +++ b/packages/icons-editor/src/icons/Scale.ts @@ -19,12 +19,14 @@ export const ScaleIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Scroll.ts b/packages/icons-editor/src/icons/Scroll.ts index 6059dba7005..0ef46c178e8 100644 --- a/packages/icons-editor/src/icons/Scroll.ts +++ b/packages/icons-editor/src/icons/Scroll.ts @@ -19,12 +19,14 @@ export const ScrollIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Section.ts b/packages/icons-editor/src/icons/Section.ts index d39d7cbacb4..d1491df185b 100644 --- a/packages/icons-editor/src/icons/Section.ts +++ b/packages/icons-editor/src/icons/Section.ts @@ -19,6 +19,7 @@ export const SectionIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -26,11 +27,12 @@ export const SectionIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M20.25 6C20.25 4.75736 19.2426 3.75 18 3.75L6 3.75C4.75736 3.75 3.75 4.75736 3.75 6L3.75 8.25L20.25 8.25L20.25 6ZM20.25 9.75L3.75 9.75L3.75 14.25L20.25 14.25L20.25 9.75ZM20.25 15.75L3.75 15.75L3.75 18C3.75 19.2426 4.75736 20.25 6 20.25L18 20.25C19.2426 20.25 20.25 19.2426 20.25 18L20.25 15.75ZM18 2.25C20.0711 2.25 21.75 3.92893 21.75 6L21.75 18C21.75 20.0711 20.0711 21.75 18 21.75L6 21.75C3.92893 21.75 2.25 20.0711 2.25 18L2.25 6C2.25 3.92893 3.92893 2.25 6 2.25L18 2.25Z" + fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/Settings.ts b/packages/icons-editor/src/icons/Settings.ts index b483717258b..2416b7c0359 100644 --- a/packages/icons-editor/src/icons/Settings.ts +++ b/packages/icons-editor/src/icons/Settings.ts @@ -19,12 +19,14 @@ export const SettingsIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Share.ts b/packages/icons-editor/src/icons/Share.ts new file mode 100644 index 00000000000..49402e777e8 --- /dev/null +++ b/packages/icons-editor/src/icons/Share.ts @@ -0,0 +1,33 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { tag as html, TemplateResult } from '../custom-tag.js'; +export { setCustomTemplateLiteralTag } from '../custom-tag.js'; +export const ShareIcon = (): string | TemplateResult => { + return html` + + + + `; +}; diff --git a/packages/icons-editor/src/icons/Shift.ts b/packages/icons-editor/src/icons/Shift.ts index abd3110647e..46c12b58490 100644 --- a/packages/icons-editor/src/icons/Shift.ts +++ b/packages/icons-editor/src/icons/Shift.ts @@ -19,12 +19,14 @@ export const ShiftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/SketchStatic.ts b/packages/icons-editor/src/icons/SketchStatic.ts new file mode 100644 index 00000000000..4999865247c --- /dev/null +++ b/packages/icons-editor/src/icons/SketchStatic.ts @@ -0,0 +1,58 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { tag as html, TemplateResult } from '../custom-tag.js'; +export { setCustomTemplateLiteralTag } from '../custom-tag.js'; +export const SketchStaticIcon = (): string | TemplateResult => { + return html` + + + + + + + + + + + + + + + + `; +}; diff --git a/packages/icons-editor/src/icons/Skew.ts b/packages/icons-editor/src/icons/Skew.ts index f2f3c02dbb2..214f6fb07e1 100644 --- a/packages/icons-editor/src/icons/Skew.ts +++ b/packages/icons-editor/src/icons/Skew.ts @@ -19,12 +19,14 @@ export const SkewIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/SliderInvisible.ts b/packages/icons-editor/src/icons/SliderInvisible.ts index 7f5ea4180ab..353e5867590 100644 --- a/packages/icons-editor/src/icons/SliderInvisible.ts +++ b/packages/icons-editor/src/icons/SliderInvisible.ts @@ -19,12 +19,14 @@ export const SliderInvisibleIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Smartphone.ts b/packages/icons-editor/src/icons/Smartphone.ts index b6f892b8f56..8237b03ddc5 100644 --- a/packages/icons-editor/src/icons/Smartphone.ts +++ b/packages/icons-editor/src/icons/Smartphone.ts @@ -19,12 +19,14 @@ export const SmartphoneIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/SpacingHoriz.ts b/packages/icons-editor/src/icons/SpacingHoriz.ts index a3645c90044..3d3d668fae8 100644 --- a/packages/icons-editor/src/icons/SpacingHoriz.ts +++ b/packages/icons-editor/src/icons/SpacingHoriz.ts @@ -19,12 +19,14 @@ export const SpacingHorizIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/SpacingVert.ts b/packages/icons-editor/src/icons/SpacingVert.ts index d4021eb71e1..9f22b40d3a7 100644 --- a/packages/icons-editor/src/icons/SpacingVert.ts +++ b/packages/icons-editor/src/icons/SpacingVert.ts @@ -19,12 +19,14 @@ export const SpacingVertIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Star.ts b/packages/icons-editor/src/icons/Star.ts index 5c9c54dfde6..930b52f3eaa 100644 --- a/packages/icons-editor/src/icons/Star.ts +++ b/packages/icons-editor/src/icons/Star.ts @@ -19,12 +19,14 @@ export const StarIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Stop.ts b/packages/icons-editor/src/icons/Stop.ts index 5881aa90f7e..0e80811fa17 100644 --- a/packages/icons-editor/src/icons/Stop.ts +++ b/packages/icons-editor/src/icons/Stop.ts @@ -19,12 +19,14 @@ export const StopIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/StopCircle.ts b/packages/icons-editor/src/icons/StopCircle.ts index 6168f7b5e08..606ee93678d 100644 --- a/packages/icons-editor/src/icons/StopCircle.ts +++ b/packages/icons-editor/src/icons/StopCircle.ts @@ -19,12 +19,14 @@ export const StopCircleIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Style.ts b/packages/icons-editor/src/icons/Style.ts index a2b89884f24..0ed075d7709 100644 --- a/packages/icons-editor/src/icons/Style.ts +++ b/packages/icons-editor/src/icons/Style.ts @@ -19,12 +19,14 @@ export const StyleIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/TabletMac.ts b/packages/icons-editor/src/icons/TabletMac.ts index a6ba43b85bf..35533691d2b 100644 --- a/packages/icons-editor/src/icons/TabletMac.ts +++ b/packages/icons-editor/src/icons/TabletMac.ts @@ -19,12 +19,14 @@ export const TabletMacIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Tag.ts b/packages/icons-editor/src/icons/Tag.ts new file mode 100644 index 00000000000..90ac5ec3d46 --- /dev/null +++ b/packages/icons-editor/src/icons/Tag.ts @@ -0,0 +1,33 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { tag as html, TemplateResult } from '../custom-tag.js'; +export { setCustomTemplateLiteralTag } from '../custom-tag.js'; +export const TagIcon = (): string | TemplateResult => { + return html` + + + + `; +}; diff --git a/packages/icons-editor/src/icons/Text.ts b/packages/icons-editor/src/icons/Text.ts index 41d38585ed3..bfcacb47880 100644 --- a/packages/icons-editor/src/icons/Text.ts +++ b/packages/icons-editor/src/icons/Text.ts @@ -19,12 +19,14 @@ export const TextIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/TextBold.ts b/packages/icons-editor/src/icons/TextBold.ts index 102f5ca4ac8..2dba96ed828 100644 --- a/packages/icons-editor/src/icons/TextBold.ts +++ b/packages/icons-editor/src/icons/TextBold.ts @@ -19,12 +19,14 @@ export const TextBoldIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/TextDeleteline.ts b/packages/icons-editor/src/icons/TextDeleteline.ts index 900c4abcdd8..718b1957d5b 100644 --- a/packages/icons-editor/src/icons/TextDeleteline.ts +++ b/packages/icons-editor/src/icons/TextDeleteline.ts @@ -19,12 +19,14 @@ export const TextDeletelineIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/TextItaly.ts b/packages/icons-editor/src/icons/TextItaly.ts index d06a3461dfa..719dbcb9140 100644 --- a/packages/icons-editor/src/icons/TextItaly.ts +++ b/packages/icons-editor/src/icons/TextItaly.ts @@ -19,12 +19,14 @@ export const TextItalyIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/TextScale.ts b/packages/icons-editor/src/icons/TextScale.ts index c11ef0552cd..e54224210ab 100644 --- a/packages/icons-editor/src/icons/TextScale.ts +++ b/packages/icons-editor/src/icons/TextScale.ts @@ -19,12 +19,14 @@ export const TextScaleIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/TextUnderline.ts b/packages/icons-editor/src/icons/TextUnderline.ts index 8578c1b52d2..2106007fe5b 100644 --- a/packages/icons-editor/src/icons/TextUnderline.ts +++ b/packages/icons-editor/src/icons/TextUnderline.ts @@ -19,12 +19,14 @@ export const TextUnderlineIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Theme.ts b/packages/icons-editor/src/icons/Theme.ts index 60ef8a77d82..fd0b3bba06b 100644 --- a/packages/icons-editor/src/icons/Theme.ts +++ b/packages/icons-editor/src/icons/Theme.ts @@ -19,17 +19,20 @@ export const ThemeIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Time.ts b/packages/icons-editor/src/icons/Time.ts index 55bea746c99..36eeacd0276 100644 --- a/packages/icons-editor/src/icons/Time.ts +++ b/packages/icons-editor/src/icons/Time.ts @@ -19,12 +19,14 @@ export const TimeIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Trigger.ts b/packages/icons-editor/src/icons/Trigger.ts index 69dc1bd0d61..80c741a0f6c 100644 --- a/packages/icons-editor/src/icons/Trigger.ts +++ b/packages/icons-editor/src/icons/Trigger.ts @@ -19,14 +19,15 @@ export const TriggerIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > - + - + diff --git a/packages/icons-editor/src/icons/Tune.ts b/packages/icons-editor/src/icons/Tune.ts index 0d5846b297e..44e3b2bbe7f 100644 --- a/packages/icons-editor/src/icons/Tune.ts +++ b/packages/icons-editor/src/icons/Tune.ts @@ -19,12 +19,14 @@ export const TuneIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Undo.ts b/packages/icons-editor/src/icons/Undo.ts index da90f3260f5..f100989d73d 100644 --- a/packages/icons-editor/src/icons/Undo.ts +++ b/packages/icons-editor/src/icons/Undo.ts @@ -19,12 +19,14 @@ export const UndoIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Unit.ts b/packages/icons-editor/src/icons/Unit.ts index c0ca38b9256..fc73f02d2ba 100644 --- a/packages/icons-editor/src/icons/Unit.ts +++ b/packages/icons-editor/src/icons/Unit.ts @@ -19,13 +19,16 @@ export const UnitIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Unlocked.ts b/packages/icons-editor/src/icons/Unlocked.ts index 9634de675d5..39140a0afe9 100644 --- a/packages/icons-editor/src/icons/Unlocked.ts +++ b/packages/icons-editor/src/icons/Unlocked.ts @@ -19,12 +19,14 @@ export const UnlockedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/VertCenters.ts b/packages/icons-editor/src/icons/VertCenters.ts index 8d9638e6f06..fdfc9ec7090 100644 --- a/packages/icons-editor/src/icons/VertCenters.ts +++ b/packages/icons-editor/src/icons/VertCenters.ts @@ -19,12 +19,14 @@ export const VertCentersIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/VertLeft.ts b/packages/icons-editor/src/icons/VertLeft.ts index 9395e7f631a..1710cfdd7b6 100644 --- a/packages/icons-editor/src/icons/VertLeft.ts +++ b/packages/icons-editor/src/icons/VertLeft.ts @@ -19,12 +19,14 @@ export const VertLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/VertRight.ts b/packages/icons-editor/src/icons/VertRight.ts index ca13cf3b09b..73a7c84fc15 100644 --- a/packages/icons-editor/src/icons/VertRight.ts +++ b/packages/icons-editor/src/icons/VertRight.ts @@ -19,12 +19,14 @@ export const VertRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Video.ts b/packages/icons-editor/src/icons/Video.ts index 246fe5f10a7..5ac33df0b21 100644 --- a/packages/icons-editor/src/icons/Video.ts +++ b/packages/icons-editor/src/icons/Video.ts @@ -19,12 +19,14 @@ export const VideoIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/WidthFill.ts b/packages/icons-editor/src/icons/WidthFill.ts index 570e25aa7ad..02444cef040 100644 --- a/packages/icons-editor/src/icons/WidthFill.ts +++ b/packages/icons-editor/src/icons/WidthFill.ts @@ -19,12 +19,14 @@ export const WidthFillIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/WidthFixed.ts b/packages/icons-editor/src/icons/WidthFixed.ts index 29f4f5999f3..ef0f44ab229 100644 --- a/packages/icons-editor/src/icons/WidthFixed.ts +++ b/packages/icons-editor/src/icons/WidthFixed.ts @@ -19,12 +19,14 @@ export const WidthFixedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/WidthHug.ts b/packages/icons-editor/src/icons/WidthHug.ts index fdf476437cf..765d7d9f90d 100644 --- a/packages/icons-editor/src/icons/WidthHug.ts +++ b/packages/icons-editor/src/icons/WidthHug.ts @@ -19,12 +19,14 @@ export const WidthHugIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Wrap.ts b/packages/icons-editor/src/icons/Wrap.ts index 98e33ed26c9..ae4e5c293f3 100644 --- a/packages/icons-editor/src/icons/Wrap.ts +++ b/packages/icons-editor/src/icons/Wrap.ts @@ -19,12 +19,14 @@ export const WrapIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/svg/Add.svg b/packages/icons-editor/src/svg/Add.svg index 9eb625014cd..8a0bd31b9b4 100644 --- a/packages/icons-editor/src/svg/Add.svg +++ b/packages/icons-editor/src/svg/Add.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Alert.svg b/packages/icons-editor/src/svg/Alert.svg index 41326af1ff3..f1607bb93f0 100644 --- a/packages/icons-editor/src/svg/Alert.svg +++ b/packages/icons-editor/src/svg/Alert.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/AlertFill.svg b/packages/icons-editor/src/svg/AlertFill.svg index 703ce3c58d8..f6b4eac3b65 100644 --- a/packages/icons-editor/src/svg/AlertFill.svg +++ b/packages/icons-editor/src/svg/AlertFill.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/AlignArrangeHoriz.svg b/packages/icons-editor/src/svg/AlignArrangeHoriz.svg index cae5c337a8e..6dbfe362d28 100644 --- a/packages/icons-editor/src/svg/AlignArrangeHoriz.svg +++ b/packages/icons-editor/src/svg/AlignArrangeHoriz.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/AlignArrangeVert.svg b/packages/icons-editor/src/svg/AlignArrangeVert.svg index 1e8a234bfc4..795c1346b3e 100644 --- a/packages/icons-editor/src/svg/AlignArrangeVert.svg +++ b/packages/icons-editor/src/svg/AlignArrangeVert.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/AlignBottom.svg b/packages/icons-editor/src/svg/AlignBottom.svg index 7c0bd725357..eae10151127 100644 --- a/packages/icons-editor/src/svg/AlignBottom.svg +++ b/packages/icons-editor/src/svg/AlignBottom.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/AlignHorizCenters.svg b/packages/icons-editor/src/svg/AlignHorizCenters.svg index 735ac3b6e8f..4a814bb3c86 100644 --- a/packages/icons-editor/src/svg/AlignHorizCenters.svg +++ b/packages/icons-editor/src/svg/AlignHorizCenters.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/AlignLeft.svg b/packages/icons-editor/src/svg/AlignLeft.svg index a37ac1da367..6a4b6945cf5 100644 --- a/packages/icons-editor/src/svg/AlignLeft.svg +++ b/packages/icons-editor/src/svg/AlignLeft.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/AlignRight.svg b/packages/icons-editor/src/svg/AlignRight.svg index 24c8719c520..e68577785e6 100644 --- a/packages/icons-editor/src/svg/AlignRight.svg +++ b/packages/icons-editor/src/svg/AlignRight.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/AlignTop.svg b/packages/icons-editor/src/svg/AlignTop.svg index 2442edf2f28..1024201066a 100644 --- a/packages/icons-editor/src/svg/AlignTop.svg +++ b/packages/icons-editor/src/svg/AlignTop.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/AlignVertCenters.svg b/packages/icons-editor/src/svg/AlignVertCenters.svg index b89e0e214e7..c38b1da8db7 100644 --- a/packages/icons-editor/src/svg/AlignVertCenters.svg +++ b/packages/icons-editor/src/svg/AlignVertCenters.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Animation.svg b/packages/icons-editor/src/svg/Animation.svg index a79e8c9fe67..78a8c82fc2a 100644 --- a/packages/icons-editor/src/svg/Animation.svg +++ b/packages/icons-editor/src/svg/Animation.svg @@ -1,3 +1,25 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/packages/icons-editor/src/svg/ArrowDownSmall.svg b/packages/icons-editor/src/svg/ArrowDownSmall.svg new file mode 100644 index 00000000000..35098ab9f5d --- /dev/null +++ b/packages/icons-editor/src/svg/ArrowDownSmall.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/icons-editor/src/svg/ArrowLeft.svg b/packages/icons-editor/src/svg/ArrowLeft.svg index fbb9a7ed918..721c6a0ed2b 100644 --- a/packages/icons-editor/src/svg/ArrowLeft.svg +++ b/packages/icons-editor/src/svg/ArrowLeft.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/ArrowRight.svg b/packages/icons-editor/src/svg/ArrowRight.svg index e6359e978ad..f3f9aaa6a71 100644 --- a/packages/icons-editor/src/svg/ArrowRight.svg +++ b/packages/icons-editor/src/svg/ArrowRight.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/ArrowRightSmall.svg b/packages/icons-editor/src/svg/ArrowRightSmall.svg new file mode 100644 index 00000000000..6d183925b23 --- /dev/null +++ b/packages/icons-editor/src/svg/ArrowRightSmall.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/icons-editor/src/svg/ArrowTriangle.svg b/packages/icons-editor/src/svg/ArrowTriangle.svg index 5542fc5df9f..0fcebd5cbcd 100644 --- a/packages/icons-editor/src/svg/ArrowTriangle.svg +++ b/packages/icons-editor/src/svg/ArrowTriangle.svg @@ -1,10 +1,10 @@ - + - + - + diff --git a/packages/icons-editor/src/svg/Backspace.svg b/packages/icons-editor/src/svg/Backspace.svg index f1bd23ec682..3eab7bf57a9 100644 --- a/packages/icons-editor/src/svg/Backspace.svg +++ b/packages/icons-editor/src/svg/Backspace.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Check.svg b/packages/icons-editor/src/svg/Check.svg index 8397083a3bd..56c50927db5 100644 --- a/packages/icons-editor/src/svg/Check.svg +++ b/packages/icons-editor/src/svg/Check.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/CheckFill.svg b/packages/icons-editor/src/svg/CheckFill.svg index 4cf529437f5..6a605ea7f32 100644 --- a/packages/icons-editor/src/svg/CheckFill.svg +++ b/packages/icons-editor/src/svg/CheckFill.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Clear.svg b/packages/icons-editor/src/svg/Clear.svg index abd295785b0..d685f8f894b 100644 --- a/packages/icons-editor/src/svg/Clear.svg +++ b/packages/icons-editor/src/svg/Clear.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/CloseFull.svg b/packages/icons-editor/src/svg/CloseFull.svg index a066d9a6831..e5d4ec5a4f2 100644 --- a/packages/icons-editor/src/svg/CloseFull.svg +++ b/packages/icons-editor/src/svg/CloseFull.svg @@ -1,10 +1,10 @@ - + - + - + diff --git a/packages/icons-editor/src/svg/CloudDone.svg b/packages/icons-editor/src/svg/CloudDone.svg index bb5da7655e0..44ce73e15c3 100644 --- a/packages/icons-editor/src/svg/CloudDone.svg +++ b/packages/icons-editor/src/svg/CloudDone.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/CloudOff.svg b/packages/icons-editor/src/svg/CloudOff.svg index 891307ca3ca..a4e60e5dafb 100644 --- a/packages/icons-editor/src/svg/CloudOff.svg +++ b/packages/icons-editor/src/svg/CloudOff.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Colorpicker.svg b/packages/icons-editor/src/svg/Colorpicker.svg index 7d5b8da8667..d1e6dd8e1ce 100644 --- a/packages/icons-editor/src/svg/Colorpicker.svg +++ b/packages/icons-editor/src/svg/Colorpicker.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Command.svg b/packages/icons-editor/src/svg/Command.svg index 4e969f8ed1b..3cf6a3e442b 100644 --- a/packages/icons-editor/src/svg/Command.svg +++ b/packages/icons-editor/src/svg/Command.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Contacts.svg b/packages/icons-editor/src/svg/Contacts.svg index 6b5680f963e..069c9e0c037 100644 --- a/packages/icons-editor/src/svg/Contacts.svg +++ b/packages/icons-editor/src/svg/Contacts.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Container.svg b/packages/icons-editor/src/svg/Container.svg index 1a50e0a674d..4f2c365303e 100644 --- a/packages/icons-editor/src/svg/Container.svg +++ b/packages/icons-editor/src/svg/Container.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Copy.svg b/packages/icons-editor/src/svg/Copy.svg new file mode 100644 index 00000000000..ff115270dca --- /dev/null +++ b/packages/icons-editor/src/svg/Copy.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/icons-editor/src/svg/Corner.svg b/packages/icons-editor/src/svg/Corner.svg index af0507f3fe7..89dac34d92d 100644 --- a/packages/icons-editor/src/svg/Corner.svg +++ b/packages/icons-editor/src/svg/Corner.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/CornerRadiusBottomLeft.svg b/packages/icons-editor/src/svg/CornerRadiusBottomLeft.svg index f4e74f1bfd9..37d3715c00e 100644 --- a/packages/icons-editor/src/svg/CornerRadiusBottomLeft.svg +++ b/packages/icons-editor/src/svg/CornerRadiusBottomLeft.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/CornerRadiusBottomRight.svg b/packages/icons-editor/src/svg/CornerRadiusBottomRight.svg index 774e885cde3..99e8ea30a5c 100644 --- a/packages/icons-editor/src/svg/CornerRadiusBottomRight.svg +++ b/packages/icons-editor/src/svg/CornerRadiusBottomRight.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/CornerRadiusTopLeft.svg b/packages/icons-editor/src/svg/CornerRadiusTopLeft.svg index 365872c11e6..12bbc9fcca0 100644 --- a/packages/icons-editor/src/svg/CornerRadiusTopLeft.svg +++ b/packages/icons-editor/src/svg/CornerRadiusTopLeft.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/CornerRadiusTopRight.svg b/packages/icons-editor/src/svg/CornerRadiusTopRight.svg index a84a1e5d5a8..82bcdd2ad8e 100644 --- a/packages/icons-editor/src/svg/CornerRadiusTopRight.svg +++ b/packages/icons-editor/src/svg/CornerRadiusTopRight.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Crop.svg b/packages/icons-editor/src/svg/Crop.svg index d64bad1e21f..62a5063d71f 100644 --- a/packages/icons-editor/src/svg/Crop.svg +++ b/packages/icons-editor/src/svg/Crop.svg @@ -1,5 +1,3 @@ - - - - + + diff --git a/packages/icons-editor/src/svg/DataBarchart.svg b/packages/icons-editor/src/svg/DataBarchart.svg index 825a1c86fe5..14e07885241 100644 --- a/packages/icons-editor/src/svg/DataBarchart.svg +++ b/packages/icons-editor/src/svg/DataBarchart.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Delete.svg b/packages/icons-editor/src/svg/Delete.svg new file mode 100644 index 00000000000..1b697e2bbc9 --- /dev/null +++ b/packages/icons-editor/src/svg/Delete.svg @@ -0,0 +1,4 @@ + + + + diff --git a/packages/icons-editor/src/svg/Desktop.svg b/packages/icons-editor/src/svg/Desktop.svg index 3024e5079c2..1bc96a16fb5 100644 --- a/packages/icons-editor/src/svg/Desktop.svg +++ b/packages/icons-editor/src/svg/Desktop.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/DirectionCenter.svg b/packages/icons-editor/src/svg/DirectionCenter.svg index ef28a9abc9c..cb111041807 100644 --- a/packages/icons-editor/src/svg/DirectionCenter.svg +++ b/packages/icons-editor/src/svg/DirectionCenter.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/DirectionDown.svg b/packages/icons-editor/src/svg/DirectionDown.svg index 68d7ce6f3cc..61d5d63c506 100644 --- a/packages/icons-editor/src/svg/DirectionDown.svg +++ b/packages/icons-editor/src/svg/DirectionDown.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/DirectionLeft.svg b/packages/icons-editor/src/svg/DirectionLeft.svg index c373004d38f..a37ebfa5153 100644 --- a/packages/icons-editor/src/svg/DirectionLeft.svg +++ b/packages/icons-editor/src/svg/DirectionLeft.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/DirectionRight.svg b/packages/icons-editor/src/svg/DirectionRight.svg index 3a8245d05ce..1c05fc6df52 100644 --- a/packages/icons-editor/src/svg/DirectionRight.svg +++ b/packages/icons-editor/src/svg/DirectionRight.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/DirectionUp.svg b/packages/icons-editor/src/svg/DirectionUp.svg index a1b5d943819..b88c9450421 100644 --- a/packages/icons-editor/src/svg/DirectionUp.svg +++ b/packages/icons-editor/src/svg/DirectionUp.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Display.svg b/packages/icons-editor/src/svg/Display.svg index 4dcb5efea51..e027fea6ad5 100644 --- a/packages/icons-editor/src/svg/Display.svg +++ b/packages/icons-editor/src/svg/Display.svg @@ -1,10 +1,10 @@ - + - + - + diff --git a/packages/icons-editor/src/svg/Done.svg b/packages/icons-editor/src/svg/Done.svg index 48cbf155cc2..8bb9cbb64c8 100644 --- a/packages/icons-editor/src/svg/Done.svg +++ b/packages/icons-editor/src/svg/Done.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/DragHandle.svg b/packages/icons-editor/src/svg/DragHandle.svg index 7c95ee7088f..486906db87b 100644 --- a/packages/icons-editor/src/svg/DragHandle.svg +++ b/packages/icons-editor/src/svg/DragHandle.svg @@ -1,10 +1,10 @@ - + - + - + diff --git a/packages/icons-editor/src/svg/Earth.svg b/packages/icons-editor/src/svg/Earth.svg index e5f027ef230..2966388441b 100644 --- a/packages/icons-editor/src/svg/Earth.svg +++ b/packages/icons-editor/src/svg/Earth.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Easeincubic.svg b/packages/icons-editor/src/svg/Easeincubic.svg index a0995e25f54..9d056259950 100644 --- a/packages/icons-editor/src/svg/Easeincubic.svg +++ b/packages/icons-editor/src/svg/Easeincubic.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Easeinoutcubic.svg b/packages/icons-editor/src/svg/Easeinoutcubic.svg index 794bce9d3ed..3aaaa9ea00f 100644 --- a/packages/icons-editor/src/svg/Easeinoutcubic.svg +++ b/packages/icons-editor/src/svg/Easeinoutcubic.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Easeinquad.svg b/packages/icons-editor/src/svg/Easeinquad.svg index afd20687a0b..f05dffadf5d 100644 --- a/packages/icons-editor/src/svg/Easeinquad.svg +++ b/packages/icons-editor/src/svg/Easeinquad.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Easeoutback.svg b/packages/icons-editor/src/svg/Easeoutback.svg index 3c9d8d53aaa..38c9776d35e 100644 --- a/packages/icons-editor/src/svg/Easeoutback.svg +++ b/packages/icons-editor/src/svg/Easeoutback.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Easeoutbounce.svg b/packages/icons-editor/src/svg/Easeoutbounce.svg index 31fd2012fae..2ea104aadd7 100644 --- a/packages/icons-editor/src/svg/Easeoutbounce.svg +++ b/packages/icons-editor/src/svg/Easeoutbounce.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Easeoutcubic.svg b/packages/icons-editor/src/svg/Easeoutcubic.svg index e506bb16388..4f401a9dceb 100644 --- a/packages/icons-editor/src/svg/Easeoutcubic.svg +++ b/packages/icons-editor/src/svg/Easeoutcubic.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Easeoutelastic.svg b/packages/icons-editor/src/svg/Easeoutelastic.svg index e4984396ecc..43a7bd2614b 100644 --- a/packages/icons-editor/src/svg/Easeoutelastic.svg +++ b/packages/icons-editor/src/svg/Easeoutelastic.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Easeoutquad.svg b/packages/icons-editor/src/svg/Easeoutquad.svg index fd9d8825ff9..8dc2ecd0c4a 100644 --- a/packages/icons-editor/src/svg/Easeoutquad.svg +++ b/packages/icons-editor/src/svg/Easeoutquad.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Edit.svg b/packages/icons-editor/src/svg/Edit.svg index 0e8c8585abc..e12e2f7369a 100644 --- a/packages/icons-editor/src/svg/Edit.svg +++ b/packages/icons-editor/src/svg/Edit.svg @@ -1,10 +1,10 @@ - + - + - + diff --git a/packages/icons-editor/src/svg/Effect.svg b/packages/icons-editor/src/svg/Effect.svg index 302f559d8b8..23642fb61ce 100644 --- a/packages/icons-editor/src/svg/Effect.svg +++ b/packages/icons-editor/src/svg/Effect.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/packages/icons-editor/src/svg/Event.svg b/packages/icons-editor/src/svg/Event.svg index baf2f8b84b7..50d70d9bead 100644 --- a/packages/icons-editor/src/svg/Event.svg +++ b/packages/icons-editor/src/svg/Event.svg @@ -1,10 +1,10 @@ - + - + - + diff --git a/packages/icons-editor/src/svg/Eye.svg b/packages/icons-editor/src/svg/Eye.svg index 0e013ab87db..ad1a5a83cf3 100644 --- a/packages/icons-editor/src/svg/Eye.svg +++ b/packages/icons-editor/src/svg/Eye.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/EyeDisplay.svg b/packages/icons-editor/src/svg/EyeDisplay.svg index 571c6ed4a0a..9f65fe2bac4 100644 --- a/packages/icons-editor/src/svg/EyeDisplay.svg +++ b/packages/icons-editor/src/svg/EyeDisplay.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/EyeOff.svg b/packages/icons-editor/src/svg/EyeOff.svg index d1e89bf4541..f2784444e3c 100644 --- a/packages/icons-editor/src/svg/EyeOff.svg +++ b/packages/icons-editor/src/svg/EyeOff.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Figma.svg b/packages/icons-editor/src/svg/Figma.svg index 06d494ac7ff..d1619b08c06 100644 --- a/packages/icons-editor/src/svg/Figma.svg +++ b/packages/icons-editor/src/svg/Figma.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/FigmaStatic.svg b/packages/icons-editor/src/svg/FigmaStatic.svg new file mode 100644 index 00000000000..1849dce258c --- /dev/null +++ b/packages/icons-editor/src/svg/FigmaStatic.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/packages/icons-editor/src/svg/FileFolder.svg b/packages/icons-editor/src/svg/FileFolder.svg index b2e867d3000..d174e154fe5 100644 --- a/packages/icons-editor/src/svg/FileFolder.svg +++ b/packages/icons-editor/src/svg/FileFolder.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/FileOutline.svg b/packages/icons-editor/src/svg/FileOutline.svg index e3ab21d2e9f..e59a04a4801 100644 --- a/packages/icons-editor/src/svg/FileOutline.svg +++ b/packages/icons-editor/src/svg/FileOutline.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Fixed.svg b/packages/icons-editor/src/svg/Fixed.svg index 787cda6a802..db3ab953e17 100644 --- a/packages/icons-editor/src/svg/Fixed.svg +++ b/packages/icons-editor/src/svg/Fixed.svg @@ -1,10 +1,10 @@ - + - + - + diff --git a/packages/icons-editor/src/svg/Focus.svg b/packages/icons-editor/src/svg/Focus.svg index c09ed5b131d..123e889965f 100644 --- a/packages/icons-editor/src/svg/Focus.svg +++ b/packages/icons-editor/src/svg/Focus.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/FormatAlignBottom.svg b/packages/icons-editor/src/svg/FormatAlignBottom.svg index 122ffa8dd97..12d609d7dc4 100644 --- a/packages/icons-editor/src/svg/FormatAlignBottom.svg +++ b/packages/icons-editor/src/svg/FormatAlignBottom.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/FormatAlignMedium.svg b/packages/icons-editor/src/svg/FormatAlignMedium.svg index fbfb6803fb3..b1a1125fbfb 100644 --- a/packages/icons-editor/src/svg/FormatAlignMedium.svg +++ b/packages/icons-editor/src/svg/FormatAlignMedium.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/FormatAlignTop.svg b/packages/icons-editor/src/svg/FormatAlignTop.svg index 67b81f524d2..1d1a4103a32 100644 --- a/packages/icons-editor/src/svg/FormatAlignTop.svg +++ b/packages/icons-editor/src/svg/FormatAlignTop.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/FormatCenter.svg b/packages/icons-editor/src/svg/FormatCenter.svg index 278f6bc93e3..1c6e017aee1 100644 --- a/packages/icons-editor/src/svg/FormatCenter.svg +++ b/packages/icons-editor/src/svg/FormatCenter.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/FormatIndentDecrease.svg b/packages/icons-editor/src/svg/FormatIndentDecrease.svg index 3bf2c73b657..f90f8e743c3 100644 --- a/packages/icons-editor/src/svg/FormatIndentDecrease.svg +++ b/packages/icons-editor/src/svg/FormatIndentDecrease.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/FormatIndentIncrease.svg b/packages/icons-editor/src/svg/FormatIndentIncrease.svg index ba1c8558c03..1570af44623 100644 --- a/packages/icons-editor/src/svg/FormatIndentIncrease.svg +++ b/packages/icons-editor/src/svg/FormatIndentIncrease.svg @@ -1,10 +1,10 @@ - + - + - + diff --git a/packages/icons-editor/src/svg/FormatJustified.svg b/packages/icons-editor/src/svg/FormatJustified.svg index 3f25e64642e..05b9e921dcc 100644 --- a/packages/icons-editor/src/svg/FormatJustified.svg +++ b/packages/icons-editor/src/svg/FormatJustified.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/FormatLeft.svg b/packages/icons-editor/src/svg/FormatLeft.svg index d3349e13e50..f8af62f7930 100644 --- a/packages/icons-editor/src/svg/FormatLeft.svg +++ b/packages/icons-editor/src/svg/FormatLeft.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/FormatListBulleted.svg b/packages/icons-editor/src/svg/FormatListBulleted.svg index 9a8d328af4a..aafd6206778 100644 --- a/packages/icons-editor/src/svg/FormatListBulleted.svg +++ b/packages/icons-editor/src/svg/FormatListBulleted.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/FormatListNumbered.svg b/packages/icons-editor/src/svg/FormatListNumbered.svg index 9b3ec4aabc3..a08e70c2888 100644 --- a/packages/icons-editor/src/svg/FormatListNumbered.svg +++ b/packages/icons-editor/src/svg/FormatListNumbered.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/packages/icons-editor/src/svg/FormatPacingLines.svg b/packages/icons-editor/src/svg/FormatPacingLines.svg index 26f70aea0e2..708e877f67d 100644 --- a/packages/icons-editor/src/svg/FormatPacingLines.svg +++ b/packages/icons-editor/src/svg/FormatPacingLines.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/FormatRight.svg b/packages/icons-editor/src/svg/FormatRight.svg index 2fe279d33b3..72c605a1396 100644 --- a/packages/icons-editor/src/svg/FormatRight.svg +++ b/packages/icons-editor/src/svg/FormatRight.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/FormatSpacingLetter.svg b/packages/icons-editor/src/svg/FormatSpacingLetter.svg index 62375dbf8d1..58271b92b9a 100644 --- a/packages/icons-editor/src/svg/FormatSpacingLetter.svg +++ b/packages/icons-editor/src/svg/FormatSpacingLetter.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Global.svg b/packages/icons-editor/src/svg/Global.svg index f085f5bc18c..bf63d56596e 100644 --- a/packages/icons-editor/src/svg/Global.svg +++ b/packages/icons-editor/src/svg/Global.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/GridOutline.svg b/packages/icons-editor/src/svg/GridOutline.svg index 3809b029aa7..a3658b3c12d 100644 --- a/packages/icons-editor/src/svg/GridOutline.svg +++ b/packages/icons-editor/src/svg/GridOutline.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/HeightFill.svg b/packages/icons-editor/src/svg/HeightFill.svg index 31cdc4f4953..2bb10270a62 100644 --- a/packages/icons-editor/src/svg/HeightFill.svg +++ b/packages/icons-editor/src/svg/HeightFill.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/HeightFixed.svg b/packages/icons-editor/src/svg/HeightFixed.svg index 8c124985404..a4288f3c615 100644 --- a/packages/icons-editor/src/svg/HeightFixed.svg +++ b/packages/icons-editor/src/svg/HeightFixed.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/HeightHug.svg b/packages/icons-editor/src/svg/HeightHug.svg index a48d46cbc5d..d3e5a868cf6 100644 --- a/packages/icons-editor/src/svg/HeightHug.svg +++ b/packages/icons-editor/src/svg/HeightHug.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Help.svg b/packages/icons-editor/src/svg/Help.svg index 572fff1c949..57436015d4a 100644 --- a/packages/icons-editor/src/svg/Help.svg +++ b/packages/icons-editor/src/svg/Help.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/HelpFill.svg b/packages/icons-editor/src/svg/HelpFill.svg index c74ee5c012c..ea1f5e2fc95 100644 --- a/packages/icons-editor/src/svg/HelpFill.svg +++ b/packages/icons-editor/src/svg/HelpFill.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Home.svg b/packages/icons-editor/src/svg/Home.svg index 179b0eee580..05f7e728f6d 100644 --- a/packages/icons-editor/src/svg/Home.svg +++ b/packages/icons-editor/src/svg/Home.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/HorizBottom.svg b/packages/icons-editor/src/svg/HorizBottom.svg index 6ea7da4e44d..f385d714abd 100644 --- a/packages/icons-editor/src/svg/HorizBottom.svg +++ b/packages/icons-editor/src/svg/HorizBottom.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/HorizCenters.svg b/packages/icons-editor/src/svg/HorizCenters.svg index 976669eccba..5d68a5abe70 100644 --- a/packages/icons-editor/src/svg/HorizCenters.svg +++ b/packages/icons-editor/src/svg/HorizCenters.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/HorizTop.svg b/packages/icons-editor/src/svg/HorizTop.svg index 2f2343553af..66a19f13da9 100644 --- a/packages/icons-editor/src/svg/HorizTop.svg +++ b/packages/icons-editor/src/svg/HorizTop.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Image.svg b/packages/icons-editor/src/svg/Image.svg index eba2571df64..c86d0118e7e 100644 --- a/packages/icons-editor/src/svg/Image.svg +++ b/packages/icons-editor/src/svg/Image.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Import.svg b/packages/icons-editor/src/svg/Import.svg index 8d20b18804e..e09d83460db 100644 --- a/packages/icons-editor/src/svg/Import.svg +++ b/packages/icons-editor/src/svg/Import.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Info.svg b/packages/icons-editor/src/svg/Info.svg index 593d98c1346..a5871ae80ca 100644 --- a/packages/icons-editor/src/svg/Info.svg +++ b/packages/icons-editor/src/svg/Info.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/InfoFill.svg b/packages/icons-editor/src/svg/InfoFill.svg index 705bcb3575c..907bfd2c9a6 100644 --- a/packages/icons-editor/src/svg/InfoFill.svg +++ b/packages/icons-editor/src/svg/InfoFill.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Inspire.svg b/packages/icons-editor/src/svg/Inspire.svg new file mode 100644 index 00000000000..14a5592540f --- /dev/null +++ b/packages/icons-editor/src/svg/Inspire.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/icons-editor/src/svg/LabelC.svg b/packages/icons-editor/src/svg/LabelC.svg index a5e394a03be..24274bbde36 100644 --- a/packages/icons-editor/src/svg/LabelC.svg +++ b/packages/icons-editor/src/svg/LabelC.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/LabelClosebracket.svg b/packages/icons-editor/src/svg/LabelClosebracket.svg index 69d52f06c92..b2a5fd14bb4 100644 --- a/packages/icons-editor/src/svg/LabelClosebracket.svg +++ b/packages/icons-editor/src/svg/LabelClosebracket.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/LabelD.svg b/packages/icons-editor/src/svg/LabelD.svg index 1127ecb48b1..cd26b0fdabf 100644 --- a/packages/icons-editor/src/svg/LabelD.svg +++ b/packages/icons-editor/src/svg/LabelD.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/LabelG.svg b/packages/icons-editor/src/svg/LabelG.svg index 64030b8dfc3..ec7e5892fff 100644 --- a/packages/icons-editor/src/svg/LabelG.svg +++ b/packages/icons-editor/src/svg/LabelG.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/LabelOpenbracket.svg b/packages/icons-editor/src/svg/LabelOpenbracket.svg index acda7f82832..39e2c1b7b57 100644 --- a/packages/icons-editor/src/svg/LabelOpenbracket.svg +++ b/packages/icons-editor/src/svg/LabelOpenbracket.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/LabelV.svg b/packages/icons-editor/src/svg/LabelV.svg index 2e84d1f3a6f..86f8880aef7 100644 --- a/packages/icons-editor/src/svg/LabelV.svg +++ b/packages/icons-editor/src/svg/LabelV.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/LabelX.svg b/packages/icons-editor/src/svg/LabelX.svg index 726f8658fbc..ce15f5fa59b 100644 --- a/packages/icons-editor/src/svg/LabelX.svg +++ b/packages/icons-editor/src/svg/LabelX.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/LabelY.svg b/packages/icons-editor/src/svg/LabelY.svg index 2bed9aa4bb9..c133264c614 100644 --- a/packages/icons-editor/src/svg/LabelY.svg +++ b/packages/icons-editor/src/svg/LabelY.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/LabelZ.svg b/packages/icons-editor/src/svg/LabelZ.svg index 98ef81c0b3f..d85b853df9e 100644 --- a/packages/icons-editor/src/svg/LabelZ.svg +++ b/packages/icons-editor/src/svg/LabelZ.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Layers.svg b/packages/icons-editor/src/svg/Layers.svg index 810773fba3d..e0b8edbd0aa 100644 --- a/packages/icons-editor/src/svg/Layers.svg +++ b/packages/icons-editor/src/svg/Layers.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/LayoutHorz.svg b/packages/icons-editor/src/svg/LayoutHorz.svg index a5fbd477708..4695ca818aa 100644 --- a/packages/icons-editor/src/svg/LayoutHorz.svg +++ b/packages/icons-editor/src/svg/LayoutHorz.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/LayoutPageturn.svg b/packages/icons-editor/src/svg/LayoutPageturn.svg index d4b74980704..b0ad2311e2b 100644 --- a/packages/icons-editor/src/svg/LayoutPageturn.svg +++ b/packages/icons-editor/src/svg/LayoutPageturn.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/LayoutSliding.svg b/packages/icons-editor/src/svg/LayoutSliding.svg index 901c59a57c1..9cf7aeaab13 100644 --- a/packages/icons-editor/src/svg/LayoutSliding.svg +++ b/packages/icons-editor/src/svg/LayoutSliding.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/LayoutVert.svg b/packages/icons-editor/src/svg/LayoutVert.svg index 1c014b049f7..4e9a1812e9e 100644 --- a/packages/icons-editor/src/svg/LayoutVert.svg +++ b/packages/icons-editor/src/svg/LayoutVert.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/LayoutWrap.svg b/packages/icons-editor/src/svg/LayoutWrap.svg index c4b93d2d176..4ccbdac334f 100644 --- a/packages/icons-editor/src/svg/LayoutWrap.svg +++ b/packages/icons-editor/src/svg/LayoutWrap.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Linear.svg b/packages/icons-editor/src/svg/Linear.svg index 9b873680ec0..4aaf3d17755 100644 --- a/packages/icons-editor/src/svg/Linear.svg +++ b/packages/icons-editor/src/svg/Linear.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Link.svg b/packages/icons-editor/src/svg/Link.svg index aa97c744ed8..661b8493478 100644 --- a/packages/icons-editor/src/svg/Link.svg +++ b/packages/icons-editor/src/svg/Link.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Loading.svg b/packages/icons-editor/src/svg/Loading.svg index e5c2a718526..2b8c5f55848 100644 --- a/packages/icons-editor/src/svg/Loading.svg +++ b/packages/icons-editor/src/svg/Loading.svg @@ -1,6 +1,6 @@ - + - + @@ -8,7 +8,7 @@ - + diff --git a/packages/icons-editor/src/svg/LoadingWhite.svg b/packages/icons-editor/src/svg/LoadingWhite.svg index 1553155e379..575f8d99a77 100644 --- a/packages/icons-editor/src/svg/LoadingWhite.svg +++ b/packages/icons-editor/src/svg/LoadingWhite.svg @@ -1,6 +1,6 @@ - + - + @@ -8,7 +8,7 @@ - + diff --git a/packages/icons-editor/src/svg/Locate.svg b/packages/icons-editor/src/svg/Locate.svg new file mode 100644 index 00000000000..485c80fff43 --- /dev/null +++ b/packages/icons-editor/src/svg/Locate.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/icons-editor/src/svg/Locked.svg b/packages/icons-editor/src/svg/Locked.svg index b50a790d100..a5376964045 100644 --- a/packages/icons-editor/src/svg/Locked.svg +++ b/packages/icons-editor/src/svg/Locked.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Materiel.svg b/packages/icons-editor/src/svg/Materiel.svg index 744bb0fe3c3..73e14a30177 100644 --- a/packages/icons-editor/src/svg/Materiel.svg +++ b/packages/icons-editor/src/svg/Materiel.svg @@ -1,10 +1,10 @@ - + - + - + diff --git a/packages/icons-editor/src/svg/Menu.svg b/packages/icons-editor/src/svg/Menu.svg index fef024be1e8..02885c8f2d9 100644 --- a/packages/icons-editor/src/svg/Menu.svg +++ b/packages/icons-editor/src/svg/Menu.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/MoreHoriz.svg b/packages/icons-editor/src/svg/MoreHoriz.svg index c83457e1455..5277a44d08a 100644 --- a/packages/icons-editor/src/svg/MoreHoriz.svg +++ b/packages/icons-editor/src/svg/MoreHoriz.svg @@ -1,10 +1,10 @@ - + - + - + diff --git a/packages/icons-editor/src/svg/MouseClick.svg b/packages/icons-editor/src/svg/MouseClick.svg index ab03299b64a..6d5c3220a26 100644 --- a/packages/icons-editor/src/svg/MouseClick.svg +++ b/packages/icons-editor/src/svg/MouseClick.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/MouseHover.svg b/packages/icons-editor/src/svg/MouseHover.svg index 2147d863f43..ba7fc44fb54 100644 --- a/packages/icons-editor/src/svg/MouseHover.svg +++ b/packages/icons-editor/src/svg/MouseHover.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Move.svg b/packages/icons-editor/src/svg/Move.svg index 09a8e14ab92..7d9584db8c8 100644 --- a/packages/icons-editor/src/svg/Move.svg +++ b/packages/icons-editor/src/svg/Move.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/None.svg b/packages/icons-editor/src/svg/None.svg index bc940d4bf1f..fbcb960b88f 100644 --- a/packages/icons-editor/src/svg/None.svg +++ b/packages/icons-editor/src/svg/None.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/OpenFull.svg b/packages/icons-editor/src/svg/OpenFull.svg index 43b61d78aab..0c3920ccd05 100644 --- a/packages/icons-editor/src/svg/OpenFull.svg +++ b/packages/icons-editor/src/svg/OpenFull.svg @@ -1,10 +1,10 @@ - + - + - + diff --git a/packages/icons-editor/src/svg/OpenInNew.svg b/packages/icons-editor/src/svg/OpenInNew.svg index 80f7d3968c4..1c4ea9081d1 100644 --- a/packages/icons-editor/src/svg/OpenInNew.svg +++ b/packages/icons-editor/src/svg/OpenInNew.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Option.svg b/packages/icons-editor/src/svg/Option.svg index 93527281570..9312580740c 100644 --- a/packages/icons-editor/src/svg/Option.svg +++ b/packages/icons-editor/src/svg/Option.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Padding.svg b/packages/icons-editor/src/svg/Padding.svg index 95d7b120e26..ef47742e9a4 100644 --- a/packages/icons-editor/src/svg/Padding.svg +++ b/packages/icons-editor/src/svg/Padding.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/PaddingBottom.svg b/packages/icons-editor/src/svg/PaddingBottom.svg index 06a408dca27..c5839f6d580 100644 --- a/packages/icons-editor/src/svg/PaddingBottom.svg +++ b/packages/icons-editor/src/svg/PaddingBottom.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/PaddingIndependent.svg b/packages/icons-editor/src/svg/PaddingIndependent.svg index 9b995eff72b..69b71366fe6 100644 --- a/packages/icons-editor/src/svg/PaddingIndependent.svg +++ b/packages/icons-editor/src/svg/PaddingIndependent.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/PaddingLeft.svg b/packages/icons-editor/src/svg/PaddingLeft.svg index 7cdb0bbfaae..bbcaafcd00e 100644 --- a/packages/icons-editor/src/svg/PaddingLeft.svg +++ b/packages/icons-editor/src/svg/PaddingLeft.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/PaddingRight.svg b/packages/icons-editor/src/svg/PaddingRight.svg index e9cca291135..7bb91550564 100644 --- a/packages/icons-editor/src/svg/PaddingRight.svg +++ b/packages/icons-editor/src/svg/PaddingRight.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/PaddingTop.svg b/packages/icons-editor/src/svg/PaddingTop.svg index e8ae506a7b0..b7058d5c77d 100644 --- a/packages/icons-editor/src/svg/PaddingTop.svg +++ b/packages/icons-editor/src/svg/PaddingTop.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/PageFooter.svg b/packages/icons-editor/src/svg/PageFooter.svg index 01ca5b0c9f4..814dc8383d3 100644 --- a/packages/icons-editor/src/svg/PageFooter.svg +++ b/packages/icons-editor/src/svg/PageFooter.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/PageHeader.svg b/packages/icons-editor/src/svg/PageHeader.svg index ca8e3a8e400..0b4ee25526c 100644 --- a/packages/icons-editor/src/svg/PageHeader.svg +++ b/packages/icons-editor/src/svg/PageHeader.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Pages.svg b/packages/icons-editor/src/svg/Pages.svg index 6e89a395ccf..e70e6079c2c 100644 --- a/packages/icons-editor/src/svg/Pages.svg +++ b/packages/icons-editor/src/svg/Pages.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Paragraph.svg b/packages/icons-editor/src/svg/Paragraph.svg index 1327748dca7..7d462cda7ba 100644 --- a/packages/icons-editor/src/svg/Paragraph.svg +++ b/packages/icons-editor/src/svg/Paragraph.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Play.svg b/packages/icons-editor/src/svg/Play.svg index 90dc23afdcc..dbe92b89fb0 100644 --- a/packages/icons-editor/src/svg/Play.svg +++ b/packages/icons-editor/src/svg/Play.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Publish.svg b/packages/icons-editor/src/svg/Publish.svg new file mode 100644 index 00000000000..14c7a9d02cb --- /dev/null +++ b/packages/icons-editor/src/svg/Publish.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/icons-editor/src/svg/QrCode.svg b/packages/icons-editor/src/svg/QrCode.svg index 06ad1cc5be6..1aece424d99 100644 --- a/packages/icons-editor/src/svg/QrCode.svg +++ b/packages/icons-editor/src/svg/QrCode.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/RadioButtonUnchecked.svg b/packages/icons-editor/src/svg/RadioButtonUnchecked.svg index 2aa65098020..2c021146276 100644 --- a/packages/icons-editor/src/svg/RadioButtonUnchecked.svg +++ b/packages/icons-editor/src/svg/RadioButtonUnchecked.svg @@ -1,10 +1,10 @@ - + - + - + diff --git a/packages/icons-editor/src/svg/Redo.svg b/packages/icons-editor/src/svg/Redo.svg index 580d80e101e..b1637909691 100644 --- a/packages/icons-editor/src/svg/Redo.svg +++ b/packages/icons-editor/src/svg/Redo.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Remove.svg b/packages/icons-editor/src/svg/Remove.svg index 1a57b2255e4..b223f32b2af 100644 --- a/packages/icons-editor/src/svg/Remove.svg +++ b/packages/icons-editor/src/svg/Remove.svg @@ -1,10 +1,10 @@ - + - + - + diff --git a/packages/icons-editor/src/svg/RotateLeft.svg b/packages/icons-editor/src/svg/RotateLeft.svg index 4348edbe813..3dfbc4750fa 100644 --- a/packages/icons-editor/src/svg/RotateLeft.svg +++ b/packages/icons-editor/src/svg/RotateLeft.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Scale.svg b/packages/icons-editor/src/svg/Scale.svg index 44a0f07a7a6..9811813460a 100644 --- a/packages/icons-editor/src/svg/Scale.svg +++ b/packages/icons-editor/src/svg/Scale.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Scroll.svg b/packages/icons-editor/src/svg/Scroll.svg index c147f3f4300..79711ed3660 100644 --- a/packages/icons-editor/src/svg/Scroll.svg +++ b/packages/icons-editor/src/svg/Scroll.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Section.svg b/packages/icons-editor/src/svg/Section.svg index 1d88709c7ec..6af6a22ecc1 100644 --- a/packages/icons-editor/src/svg/Section.svg +++ b/packages/icons-editor/src/svg/Section.svg @@ -1,10 +1,10 @@ - + - + - + diff --git a/packages/icons-editor/src/svg/Settings.svg b/packages/icons-editor/src/svg/Settings.svg index f1d4b7c4de4..064c309af16 100644 --- a/packages/icons-editor/src/svg/Settings.svg +++ b/packages/icons-editor/src/svg/Settings.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Share.svg b/packages/icons-editor/src/svg/Share.svg new file mode 100644 index 00000000000..907dac1724a --- /dev/null +++ b/packages/icons-editor/src/svg/Share.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/icons-editor/src/svg/Shift.svg b/packages/icons-editor/src/svg/Shift.svg index 3febd262b4f..bf9cc210e33 100644 --- a/packages/icons-editor/src/svg/Shift.svg +++ b/packages/icons-editor/src/svg/Shift.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/SketchStatic.svg b/packages/icons-editor/src/svg/SketchStatic.svg new file mode 100644 index 00000000000..79fbdff6c6c --- /dev/null +++ b/packages/icons-editor/src/svg/SketchStatic.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/packages/icons-editor/src/svg/Skew.svg b/packages/icons-editor/src/svg/Skew.svg index 2d6d4668d7c..1639f5e9b0d 100644 --- a/packages/icons-editor/src/svg/Skew.svg +++ b/packages/icons-editor/src/svg/Skew.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/SliderInvisible.svg b/packages/icons-editor/src/svg/SliderInvisible.svg index 0ae4d189a18..0d086ea5444 100644 --- a/packages/icons-editor/src/svg/SliderInvisible.svg +++ b/packages/icons-editor/src/svg/SliderInvisible.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Smartphone.svg b/packages/icons-editor/src/svg/Smartphone.svg index a745d1919e3..4c50efb2dd0 100644 --- a/packages/icons-editor/src/svg/Smartphone.svg +++ b/packages/icons-editor/src/svg/Smartphone.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/SpacingHoriz.svg b/packages/icons-editor/src/svg/SpacingHoriz.svg index 5d1fa061537..782cdf3c49d 100644 --- a/packages/icons-editor/src/svg/SpacingHoriz.svg +++ b/packages/icons-editor/src/svg/SpacingHoriz.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/SpacingVert.svg b/packages/icons-editor/src/svg/SpacingVert.svg index cda82577c93..155c5bea8e5 100644 --- a/packages/icons-editor/src/svg/SpacingVert.svg +++ b/packages/icons-editor/src/svg/SpacingVert.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Star.svg b/packages/icons-editor/src/svg/Star.svg index eed3530bee2..1b07d2ea912 100644 --- a/packages/icons-editor/src/svg/Star.svg +++ b/packages/icons-editor/src/svg/Star.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Stop.svg b/packages/icons-editor/src/svg/Stop.svg index fbbc9ff9119..ae3c05fbf46 100644 --- a/packages/icons-editor/src/svg/Stop.svg +++ b/packages/icons-editor/src/svg/Stop.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/StopCircle.svg b/packages/icons-editor/src/svg/StopCircle.svg index cf3723ec25f..2e9eca45bd4 100644 --- a/packages/icons-editor/src/svg/StopCircle.svg +++ b/packages/icons-editor/src/svg/StopCircle.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Style.svg b/packages/icons-editor/src/svg/Style.svg index 9097205fbe7..55b63d2f78a 100644 --- a/packages/icons-editor/src/svg/Style.svg +++ b/packages/icons-editor/src/svg/Style.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/TabletMac.svg b/packages/icons-editor/src/svg/TabletMac.svg index 76ff0b191ac..8b693c9a817 100644 --- a/packages/icons-editor/src/svg/TabletMac.svg +++ b/packages/icons-editor/src/svg/TabletMac.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Tag.svg b/packages/icons-editor/src/svg/Tag.svg new file mode 100644 index 00000000000..a9af3dd9d88 --- /dev/null +++ b/packages/icons-editor/src/svg/Tag.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/icons-editor/src/svg/Text.svg b/packages/icons-editor/src/svg/Text.svg index 7693775b482..a0ac2b33c71 100644 --- a/packages/icons-editor/src/svg/Text.svg +++ b/packages/icons-editor/src/svg/Text.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/TextBold.svg b/packages/icons-editor/src/svg/TextBold.svg index cdb61b88303..d8a0ab1e541 100644 --- a/packages/icons-editor/src/svg/TextBold.svg +++ b/packages/icons-editor/src/svg/TextBold.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/TextDeleteline.svg b/packages/icons-editor/src/svg/TextDeleteline.svg index 620dfcb10af..2e60a7656d7 100644 --- a/packages/icons-editor/src/svg/TextDeleteline.svg +++ b/packages/icons-editor/src/svg/TextDeleteline.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/TextItaly.svg b/packages/icons-editor/src/svg/TextItaly.svg index 376f5da2598..b5912104507 100644 --- a/packages/icons-editor/src/svg/TextItaly.svg +++ b/packages/icons-editor/src/svg/TextItaly.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/TextScale.svg b/packages/icons-editor/src/svg/TextScale.svg index d85819e7a48..5a3466ea3e0 100644 --- a/packages/icons-editor/src/svg/TextScale.svg +++ b/packages/icons-editor/src/svg/TextScale.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/TextUnderline.svg b/packages/icons-editor/src/svg/TextUnderline.svg index 8fce20d2c1d..23761e793c7 100644 --- a/packages/icons-editor/src/svg/TextUnderline.svg +++ b/packages/icons-editor/src/svg/TextUnderline.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Theme.svg b/packages/icons-editor/src/svg/Theme.svg index 89b0b9dbba6..0e21b3d57fc 100644 --- a/packages/icons-editor/src/svg/Theme.svg +++ b/packages/icons-editor/src/svg/Theme.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/packages/icons-editor/src/svg/Time.svg b/packages/icons-editor/src/svg/Time.svg index 8cea960e9cd..f8e54204519 100644 --- a/packages/icons-editor/src/svg/Time.svg +++ b/packages/icons-editor/src/svg/Time.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Trigger.svg b/packages/icons-editor/src/svg/Trigger.svg index 4c718946328..b27674c6839 100644 --- a/packages/icons-editor/src/svg/Trigger.svg +++ b/packages/icons-editor/src/svg/Trigger.svg @@ -1,10 +1,10 @@ - + - + - + diff --git a/packages/icons-editor/src/svg/Tune.svg b/packages/icons-editor/src/svg/Tune.svg index 539332f6332..1d826287ba3 100644 --- a/packages/icons-editor/src/svg/Tune.svg +++ b/packages/icons-editor/src/svg/Tune.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Undo.svg b/packages/icons-editor/src/svg/Undo.svg index ea2daeea7ef..5b619d3572a 100644 --- a/packages/icons-editor/src/svg/Undo.svg +++ b/packages/icons-editor/src/svg/Undo.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Unit.svg b/packages/icons-editor/src/svg/Unit.svg index db9a7bcaace..4dae07ed192 100644 --- a/packages/icons-editor/src/svg/Unit.svg +++ b/packages/icons-editor/src/svg/Unit.svg @@ -1,4 +1,4 @@ - - - + + + diff --git a/packages/icons-editor/src/svg/Unlocked.svg b/packages/icons-editor/src/svg/Unlocked.svg index e292d509613..69452d778f3 100644 --- a/packages/icons-editor/src/svg/Unlocked.svg +++ b/packages/icons-editor/src/svg/Unlocked.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/VertCenters.svg b/packages/icons-editor/src/svg/VertCenters.svg index 312ea074562..86b4bc5d7bf 100644 --- a/packages/icons-editor/src/svg/VertCenters.svg +++ b/packages/icons-editor/src/svg/VertCenters.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/VertLeft.svg b/packages/icons-editor/src/svg/VertLeft.svg index 133b16fa342..d086a8a8309 100644 --- a/packages/icons-editor/src/svg/VertLeft.svg +++ b/packages/icons-editor/src/svg/VertLeft.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/VertRight.svg b/packages/icons-editor/src/svg/VertRight.svg index 698f85dd5be..b97457b5f75 100644 --- a/packages/icons-editor/src/svg/VertRight.svg +++ b/packages/icons-editor/src/svg/VertRight.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Video.svg b/packages/icons-editor/src/svg/Video.svg index 5bbb085126f..7e3a7f009ce 100644 --- a/packages/icons-editor/src/svg/Video.svg +++ b/packages/icons-editor/src/svg/Video.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/WidthFill.svg b/packages/icons-editor/src/svg/WidthFill.svg index 9b760474ce1..a9cbf0a6b03 100644 --- a/packages/icons-editor/src/svg/WidthFill.svg +++ b/packages/icons-editor/src/svg/WidthFill.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/WidthFixed.svg b/packages/icons-editor/src/svg/WidthFixed.svg index 91593acb19b..22dc548979c 100644 --- a/packages/icons-editor/src/svg/WidthFixed.svg +++ b/packages/icons-editor/src/svg/WidthFixed.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/WidthHug.svg b/packages/icons-editor/src/svg/WidthHug.svg index ce0ec84245c..a4894bc5915 100644 --- a/packages/icons-editor/src/svg/WidthHug.svg +++ b/packages/icons-editor/src/svg/WidthHug.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/Wrap.svg b/packages/icons-editor/src/svg/Wrap.svg index 75bc83e7693..d6d30c0a515 100644 --- a/packages/icons-editor/src/svg/Wrap.svg +++ b/packages/icons-editor/src/svg/Wrap.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons-editor/src/svg/close.svg b/packages/icons-editor/src/svg/close.svg index adc535ab8ee..2a209e37963 100644 --- a/packages/icons-editor/src/svg/close.svg +++ b/packages/icons-editor/src/svg/close.svg @@ -1,3 +1,3 @@ - - + + diff --git a/packages/icons/src/icons-editor.svg.ts b/packages/icons/src/icons-editor.svg.ts index d78c32bbdca..3995238e278 100644 --- a/packages/icons/src/icons-editor.svg.ts +++ b/packages/icons/src/icons-editor.svg.ts @@ -11,4 +11,4 @@ OF ANY KIND, either express or implied. See the License for the specific languag governing permissions and limitations under the License. */ import { svg } from '@iliad-ui/base'; -export default svg``; +export default svg``; From 34b6303b9c3b543a8f2f33a8cac57554cf947f2e Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Thu, 10 Nov 2022 17:11:53 +0800 Subject: [PATCH 15/28] =?UTF-8?q?feat:=20checkbox=E6=A0=B7=E5=BC=8F?= =?UTF-8?q?=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- packages/checkbox/package.json | 2 +- packages/checkbox/src/Checkbox.ts | 54 +- packages/checkbox/src/checkbox.css | 669 +++++++++++++++++- packages/checkbox/src/spectrum-checkbox.css | 18 + packages/checkbox/src/vars.css | 84 +-- packages/help-text/package.json | 4 +- packages/icons/src/icons-editor.svg.ts | 2 +- packages/styles/core-global.css | 25 +- packages/styles/gulpfile.cjs | 10 + packages/styles/package.json | 1 + .../scss/core-global/dimensionAliases.scss | 11 +- .../scss/core-global/staticAliases.scss | 12 +- .../styles/scss/variable-theme-light.scss | 2 +- packages/styles/theme-light.css | 2 +- 15 files changed, 787 insertions(+), 111 deletions(-) diff --git a/package.json b/package.json index 2ecebeb9dbc..51086903793 100644 --- a/package.json +++ b/package.json @@ -234,7 +234,7 @@ "@web/storybook-prebuilt": "0.1.27-alpha.0", "cssnano/**/postcss-calc": "7.0.0" }, - "customElements": "projects/documentation/custom-elements.json", + "customElements": ".storybook/custom-elements.json", "maintainers": [ { "name": "saiye", diff --git a/packages/checkbox/package.json b/packages/checkbox/package.json index fecb902afbc..a87c705d459 100644 --- a/packages/checkbox/package.json +++ b/packages/checkbox/package.json @@ -46,7 +46,7 @@ "dependencies": { "@iliad-ui/base": "^0.12.2", "@iliad-ui/icon": "^0.17.2", - "@iliad-ui/icons-ui": "^0.13.2", + "@iliad-ui/icons-editor": "^0.11.0", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/checkbox/src/Checkbox.ts b/packages/checkbox/src/Checkbox.ts index f67281bb013..8428ec23ece 100644 --- a/packages/checkbox/src/Checkbox.ts +++ b/packages/checkbox/src/Checkbox.ts @@ -21,69 +21,69 @@ import { ElementSize, } from '@iliad-ui/base'; import { CheckboxBase } from './CheckboxBase.js'; -import '@iliad-ui/icons-ui/icons/sp-icon-checkmark75.js'; -import '@iliad-ui/icons-ui/icons/sp-icon-checkmark100.js'; -import '@iliad-ui/icons-ui/icons/sp-icon-checkmark200.js'; -import '@iliad-ui/icons-ui/icons/sp-icon-checkmark300.js'; -import '@iliad-ui/icons-ui/icons/sp-icon-dash75.js'; -import '@iliad-ui/icons-ui/icons/sp-icon-dash100.js'; -import '@iliad-ui/icons-ui/icons/sp-icon-dash200.js'; -import '@iliad-ui/icons-ui/icons/sp-icon-dash300.js'; +import '@iliad-ui/icons-editor/icons/sp-icon-editor-remove.js'; +import '@iliad-ui/icons-editor/icons/sp-icon-editor-done.js'; import checkboxStyles from './checkbox.css.js'; -import checkmarkSmallStyles from '@iliad-ui/icon/src/spectrum-icon-checkmark.css.js'; -import dashSmallStyles from '@iliad-ui/icon/src/spectrum-icon-dash.css.js'; const checkmarkIcon = { s: html` - + > `, m: html` - + > `, l: html` - + > `, xl: html` - + > `, }; const dashIcon = { s: html` - + > `, m: html` - + > `, l: html` - + > `, xl: html` - + > `, }; @@ -104,7 +104,7 @@ export class Checkbox extends SizedMixin(CheckboxBase) { public emphasized = false; public static get styles(): CSSResultArray { - return [checkboxStyles, checkmarkSmallStyles, dashSmallStyles]; + return [checkboxStyles]; } protected render(): TemplateResult { diff --git a/packages/checkbox/src/checkbox.css b/packages/checkbox/src/checkbox.css index 95634dbcb34..8c594a7d9d9 100644 --- a/packages/checkbox/src/checkbox.css +++ b/packages/checkbox/src/checkbox.css @@ -1,5 +1,6 @@ -/* +/* stylelint-disable */ /* Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. This file is licensed to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 @@ -8,9 +9,9 @@ Unless required by applicable law or agreed to in writing, software distributed the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -*/ -@import './spectrum-checkbox.css'; +*/ +@import './vars.css'; :host { display: inline-flex; @@ -28,3 +29,665 @@ governing permissions and limitations under the License. :host(:empty) label { display: none; } + +:host { + align-items: flex-start; + display: inline-flex; /* .spectrum-Checkbox */ + max-width: 100%; + min-height: var(--spectrum-checkbox-height); + position: relative; + vertical-align: top; +} +#input { + box-sizing: border-box; + cursor: pointer; + font-family: inherit; /* .spectrum-Checkbox-input */ + font-size: 100%; + height: 100%; + line-height: 1.15; + margin: 0; + opacity: 0.0001; + overflow: visible; + padding: 0; + position: absolute; + width: 100%; + z-index: 1; +} +#input:disabled { + cursor: default; /* .spectrum-Checkbox-input:disabled */ +} +#input:checked + #box:before { + border-width: calc( + var(--spectrum-checkbox-box-size) / 2 + ); /* .spectrum-Checkbox-input:checked+.spectrum-Checkbox-box:before */ +} +#input:checked + #box #checkmark { + opacity: 1; + transform: scale( + 1 + ); /* .spectrum-Checkbox-input:checked+.spectrum-Checkbox-box .spectrum-Checkbox-checkmark */ +} +#input.focus-visible + #box:after { + margin: calc( + var( + --spectrum-alias-focus-ring-gap, + var(--spectrum-global-dimension-static-size-25) + ) * -1 + ); /* .spectrum-Checkbox-input.focus-ring+.spectrum-Checkbox-box:after */ +} +#input:focus-visible + #box:after { + margin: calc( + var( + --spectrum-alias-focus-ring-gap, + var(--spectrum-global-dimension-static-size-25) + ) * -1 + ); /* .spectrum-Checkbox-input.focus-ring+.spectrum-Checkbox-box:after */ +} +:host([size='s']) { + --spectrum-checkbox-text-font-style: var( + --spectrum-checkbox-s-text-font-style, + var(--spectrum-global-font-style-regular) + ); /* .spectrum-Checkbox--sizeS */ + --spectrum-checkbox-text-font-weight: var( + --spectrum-checkbox-s-text-font-weight, + var(--spectrum-alias-body-text-font-weight) + ); + --spectrum-checkbox-text-line-height: var( + --spectrum-checkbox-s-text-line-height, + var(--spectrum-alias-component-text-line-height) + ); + --spectrum-checkbox-box-border-radius: var( + --spectrum-checkbox-s-box-border-radius, + var(--spectrum-alias-border-radius-small) + ); + --spectrum-checkbox-box-border-size: var( + --spectrum-checkbox-s-box-border-size, + var(--spectrum-alias-border-size-thick) + ); + --spectrum-checkbox-text-size: var( + --spectrum-checkbox-s-text-size, + var(--spectrum-alias-item-text-size-s) + ); + --spectrum-checkbox-height: var( + --spectrum-checkbox-s-height, + var(--spectrum-alias-item-height-s) + ); + --spectrum-checkbox-box-size: var( + --spectrum-checkbox-s-box-size, + var(--spectrum-alias-item-control-2-size-s) + ); + --spectrum-checkbox-text-gap: var( + --spectrum-checkbox-s-text-gap, + var(--spectrum-alias-item-control-gap-s) + ); +} +:host([size='m']) { + --spectrum-checkbox-text-font-style: var( + --spectrum-checkbox-m-text-font-style, + var(--spectrum-global-font-style-regular) + ); /* .spectrum-Checkbox--sizeM */ + --spectrum-checkbox-text-font-weight: var( + --spectrum-checkbox-m-text-font-weight, + var(--spectrum-alias-body-text-font-weight) + ); + --spectrum-checkbox-text-line-height: var( + --spectrum-checkbox-m-text-line-height, + var(--spectrum-alias-component-text-line-height) + ); + --spectrum-checkbox-box-border-radius: var( + --spectrum-checkbox-m-box-border-radius, + var(--spectrum-alias-border-radius-small) + ); + --spectrum-checkbox-box-border-size: var( + --spectrum-checkbox-m-box-border-size, + var(--spectrum-alias-border-size-thick) + ); + --spectrum-checkbox-text-size: var( + --spectrum-checkbox-m-text-size, + var(--spectrum-alias-item-text-size-m) + ); + --spectrum-checkbox-height: var( + --spectrum-checkbox-m-height, + var(--spectrum-alias-item-height-m) + ); + --spectrum-checkbox-box-size: var( + --spectrum-checkbox-m-box-size, + var(--spectrum-alias-item-control-2-size-m) + ); + --spectrum-checkbox-text-gap: var( + --spectrum-checkbox-m-text-gap, + var(--spectrum-alias-item-control-gap-m) + ); +} +:host([size='l']) { + --spectrum-checkbox-text-font-style: var( + --spectrum-checkbox-l-text-font-style, + var(--spectrum-global-font-style-regular) + ); /* .spectrum-Checkbox--sizeL */ + --spectrum-checkbox-text-font-weight: var( + --spectrum-checkbox-l-text-font-weight, + var(--spectrum-alias-body-text-font-weight) + ); + --spectrum-checkbox-text-line-height: var( + --spectrum-checkbox-l-text-line-height, + var(--spectrum-alias-component-text-line-height) + ); + --spectrum-checkbox-box-border-radius: var( + --spectrum-checkbox-l-box-border-radius, + var(--spectrum-alias-border-radius-small) + ); + --spectrum-checkbox-box-border-size: var( + --spectrum-checkbox-l-box-border-size, + var(--spectrum-alias-border-size-thick) + ); + --spectrum-checkbox-text-size: var( + --spectrum-checkbox-l-text-size, + var(--spectrum-alias-item-text-size-l) + ); + --spectrum-checkbox-height: var( + --spectrum-checkbox-l-height, + var(--spectrum-alias-item-height-l) + ); + --spectrum-checkbox-box-size: var( + --spectrum-checkbox-l-box-size, + var(--spectrum-alias-item-control-2-size-l) + ); + --spectrum-checkbox-text-gap: var( + --spectrum-checkbox-l-text-gap, + var(--spectrum-alias-item-control-gap-l) + ); +} +:host([size='xl']) { + --spectrum-checkbox-text-font-style: var( + --spectrum-checkbox-xl-text-font-style, + var(--spectrum-global-font-style-regular) + ); /* .spectrum-Checkbox--sizeXL */ + --spectrum-checkbox-text-font-weight: var( + --spectrum-checkbox-xl-text-font-weight, + var(--spectrum-alias-body-text-font-weight) + ); + --spectrum-checkbox-text-line-height: var( + --spectrum-checkbox-xl-text-line-height, + var(--spectrum-alias-component-text-line-height) + ); + --spectrum-checkbox-box-border-radius: var( + --spectrum-checkbox-xl-box-border-radius, + var(--spectrum-alias-border-radius-small) + ); + --spectrum-checkbox-box-border-size: var( + --spectrum-checkbox-xl-box-border-size, + var(--spectrum-alias-border-size-thick) + ); + --spectrum-checkbox-text-size: var( + --spectrum-checkbox-xl-text-size, + var(--spectrum-alias-item-text-size-xl) + ); + --spectrum-checkbox-height: var( + --spectrum-checkbox-xl-height, + var(--spectrum-alias-item-height-xl) + ); + --spectrum-checkbox-box-size: var( + --spectrum-checkbox-xl-box-size, + var(--spectrum-alias-item-control-2-size-xl) + ); + --spectrum-checkbox-text-gap: var( + --spectrum-checkbox-xl-text-gap, + var(--spectrum-alias-item-control-gap-xl) + ); +} +:host([indeterminate]) #box:before, +:host([indeterminate]) #input:checked + #box:before { + border-width: calc( + var(--spectrum-checkbox-box-size) / 2 + ); /* .spectrum-Checkbox.is-indeterminate .spectrum-Checkbox-box:before, + * .spectrum-Checkbox.is-indeterminate .spectrum-Checkbox-input:checked+.spectrum-Checkbox-box:before */ +} +:host([indeterminate]) #box #checkmark, +:host([indeterminate]) #input:checked + #box #checkmark { + display: none; /* .spectrum-Checkbox.is-indeterminate .spectrum-Checkbox-box .spectrum-Checkbox-checkmark, + * .spectrum-Checkbox.is-indeterminate .spectrum-Checkbox-input:checked+.spectrum-Checkbox-box .spectrum-Checkbox-checkmark */ +} +:host([indeterminate]) #box #partialCheckmark, +:host([indeterminate]) #input:checked + #box #partialCheckmark { + display: block; /* .spectrum-Checkbox.is-indeterminate .spectrum-Checkbox-box .spectrum-Checkbox-partialCheckmark, + * .spectrum-Checkbox.is-indeterminate .spectrum-Checkbox-input:checked+.spectrum-Checkbox-box .spectrum-Checkbox-partialCheckmark */ + opacity: 1; + transform: scale(1); +} +:host([dir='ltr']) #label { + text-align: left; /* [dir=ltr] .spectrum-Checkbox-label */ +} +:host([dir='rtl']) #label { + text-align: right; /* [dir=rtl] .spectrum-Checkbox-label */ +} +#label { + --spectrum-checkbox-text-padding-top: calc( + ( + var(--spectrum-checkbox-height) - + var(--spectrum-checkbox-text-size) * + var(--spectrum-checkbox-text-line-height) + ) / 2 + ); + + font-size: var(--spectrum-checkbox-text-size); + font-style: var(--spectrum-checkbox-text-font-style); + font-weight: var(--spectrum-checkbox-text-font-weight); + line-height: var(--spectrum-checkbox-text-line-height); + margin-top: var( + --spectrum-checkbox-text-padding-top + ); /* .spectrum-Checkbox-label */ + transition: color var(--spectrum-global-animation-duration-100, 0.13s) + ease-in-out; +} +#box { + box-sizing: border-box; + flex-grow: 0; + flex-shrink: 0; + height: var(--spectrum-checkbox-box-size); + margin: calc( + (var(--spectrum-checkbox-height) - var(--spectrum-checkbox-box-size)) / + 2 + ); + position: relative; /* .spectrum-Checkbox-box */ + width: var(--spectrum-checkbox-box-size); +} +#box:before { + border-radius: var(--spectrum-checkbox-box-border-radius); + border-style: solid; + border-width: var(--spectrum-checkbox-box-border-size); + box-sizing: border-box; + content: ''; + display: block; /* .spectrum-Checkbox-box:before */ + height: var(--spectrum-checkbox-box-size); + position: absolute; + transition: border var(--spectrum-global-animation-duration-100, 0.13s) + ease-in-out, + box-shadow var(--spectrum-global-animation-duration-100, 0.13s) + ease-in-out; + width: var(--spectrum-checkbox-box-size); + z-index: 0; +} +#box:after { + border-radius: calc( + var(--spectrum-checkbox-box-border-radius) + + var( + --spectrum-alias-focus-ring-gap, + var(--spectrum-global-dimension-static-size-25) + ) + ); /* .spectrum-Checkbox-box:after */ + bottom: 0; + content: ''; + display: block; + left: 0; + margin: var( + --spectrum-alias-focus-ring-gap, + var(--spectrum-global-dimension-static-size-25) + ); + position: absolute; + right: 0; + top: 0; + transform: translate(0); + transition: box-shadow var(--spectrum-global-animation-duration-100, 0.13s) + ease-out, + margin var(--spectrum-global-animation-duration-100, 0.13s) ease-out; +} +#checkmark, +#partialCheckmark { + opacity: 0; + position: absolute; /* .spectrum-Checkbox-checkmark, + * .spectrum-Checkbox-partialCheckmark */ + transform: scale(0); + transition: opacity var(--spectrum-global-animation-duration-100, 0.13s) + ease-in-out, + transform var(--spectrum-global-animation-duration-100, 0.13s) + ease-in-out; +} +#partialCheckmark { + display: none; +} +:host { + color: var( + --spectrum-checkbox-m-text-color, + var(--spectrum-alias-text-color) + ); /* .spectrum-Checkbox */ +} +#checkmark, +#partialCheckmark { + --spectrum-checkbox-checkmark-size: calc( + var(--spectrum-checkbox-box-size) - 2 * + var(--spectrum-checkbox-box-border-size) + ); + + width: var(--spectrum-checkbox-checkmark-size); + height: var(--spectrum-checkbox-checkmark-size); + margin-left: var(--spectrum-checkbox-box-border-size); + margin-top: var(--spectrum-checkbox-box-border-size); + color: var( + --spectrum-checkbox-m-checkmark-color, + var(--spectrum-global-color-gray-75) + ); /* .spectrum-Checkbox-checkmark, + * .spectrum-Checkbox-partialCheckmark */ +} +#box:before { + background-color: var( + --spectrum-checkbox-m-box-background-color, + var(--spectrum-global-color-gray-75) + ); + border-color: var( + --spectrum-checkbox-m-box-border-color, + var(--spectrum-global-color-gray-600) + ); + forced-color-adjust: none; /* .spectrum-Checkbox-box:before */ +} +#label { + color: var( + --spectrum-checkbox-m-text-color, + var(--spectrum-alias-text-color) + ); /* .spectrum-Checkbox-label */ +} +#input:checked + #box:before, +:host([indeterminate]) #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-selected, + var(--spectrum-global-color-gray-700) + ); /* .spectrum-Checkbox.is-indeterminate .spectrum-Checkbox-box:before, + * .spectrum-Checkbox-input:checked+.spectrum-Checkbox-box:before */ +} +:host(:hover) #input:checked + #box:before, +:host(:hover[indeterminate]) #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-selected-hover, + var(--spectrum-global-color-gray-800) + ); /* .spectrum-Checkbox:hover.is-indeterminate .spectrum-Checkbox-box:before, + * .spectrum-Checkbox:hover .spectrum-Checkbox-input:checked+.spectrum-Checkbox-box:before */ +} +:host(:active) #input:checked + #box:before, +:host(:active[indeterminate]) #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-selected-down, + var(--spectrum-global-color-gray-900) + ); /* .spectrum-Checkbox:active.is-indeterminate .spectrum-Checkbox-box:before, + * .spectrum-Checkbox:active .spectrum-Checkbox-input:checked+.spectrum-Checkbox-box:before */ +} +:host { + border-color: var( + --spectrum-checkbox-m-box-border-color, + var(--spectrum-global-color-gray-600) + ); /* .spectrum-Checkbox */ +} +:host(:hover) #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-hover, + var(--spectrum-global-color-gray-700) + ); /* .spectrum-Checkbox:hover .spectrum-Checkbox-box:before */ +} +:host(:hover) #label { + color: var( + --spectrum-checkbox-m-text-color-hover, + var(--spectrum-alias-text-color-hover) + ); /* .spectrum-Checkbox:hover .spectrum-Checkbox-label */ +} +:host(:active) #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-down, + var(--spectrum-global-color-gray-800) + ); /* .spectrum-Checkbox:active .spectrum-Checkbox-box:before */ +} +:host(:active) #label { + color: var( + --spectrum-checkbox-m-text-color-down, + var(--spectrum-alias-text-color-down) + ); /* .spectrum-Checkbox:active .spectrum-Checkbox-label */ +} +#input:disabled + #box:before, +:host([dir]) #input:checked:disabled + #box:before { + background-color: var( + --spectrum-checkbox-m-box-background-color-disabled, + var(--spectrum-global-color-gray-75) + ); + border-color: var( + --spectrum-checkbox-m-box-border-color-disabled, + var(--spectrum-global-color-gray-400) + ); /* .spectrum-Checkbox .spectrum-Checkbox-input:disabled+.spectrum-Checkbox-box:before, + * .spectrum-Checkbox .spectrum-Checkbox-input:checked:disabled+.spectrum-Checkbox-box:before */ +} +#input:checked:disabled ~ #label, +#input:disabled ~ #label { + color: var( + --spectrum-checkbox-m-text-color-disabled, + var(--spectrum-alias-text-color-disabled) + ); + forced-color-adjust: none; /* .spectrum-Checkbox .spectrum-Checkbox-input:disabled~.spectrum-Checkbox-label, + * .spectrum-Checkbox .spectrum-Checkbox-input:checked:disabled~.spectrum-Checkbox-label */ +} +#input.focus-visible + #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-key-focus, + var(--spectrum-global-color-gray-700) + ); /* .spectrum-Checkbox-input.focus-ring+.spectrum-Checkbox-box:before */ +} +#input:focus-visible + #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-key-focus, + var(--spectrum-global-color-gray-700) + ); /* .spectrum-Checkbox-input.focus-ring+.spectrum-Checkbox-box:before */ +} +#input.focus-visible + #box:after { + box-shadow: 0 0 0 + var( + --spectrum-checkbox-m-focus-ring-size-key-focus, + var(--spectrum-alias-focus-ring-size) + ) + var( + --spectrum-checkbox-m-focus-ring-color-key-focus, + var(--spectrum-alias-focus-ring-color) + ); + forced-color-adjust: none; /* .spectrum-Checkbox-input.focus-ring+.spectrum-Checkbox-box:after */ +} +#input:focus-visible + #box:after { + box-shadow: 0 0 0 + var( + --spectrum-checkbox-m-focus-ring-size-key-focus, + var(--spectrum-alias-focus-ring-size) + ) + var( + --spectrum-checkbox-m-focus-ring-color-key-focus, + var(--spectrum-alias-focus-ring-color) + ); + forced-color-adjust: none; /* .spectrum-Checkbox-input.focus-ring+.spectrum-Checkbox-box:after */ +} +#input:checked.focus-visible + #box:before, +:host([indeterminate]) #input.focus-visible + #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-selected-key-focus, + var(--spectrum-global-color-gray-800) + ); /* .spectrum-Checkbox.is-indeterminate .spectrum-Checkbox-input.focus-ring+.spectrum-Checkbox-box:before, + * .spectrum-Checkbox-input:checked.focus-ring+.spectrum-Checkbox-box:before */ +} +#input:checked:focus-visible + #box:before, +:host([indeterminate]) #input:focus-visible + #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-selected-key-focus, + var(--spectrum-global-color-gray-800) + ); /* .spectrum-Checkbox.is-indeterminate .spectrum-Checkbox-input.focus-ring+.spectrum-Checkbox-box:before, + * .spectrum-Checkbox-input:checked.focus-ring+.spectrum-Checkbox-box:before */ +} +#input.focus-visible ~ #label { + color: var( + --spectrum-checkbox-m-text-color-key-focus, + var(--spectrum-alias-text-color-hover) + ); /* .spectrum-Checkbox-input.focus-ring~.spectrum-Checkbox-label */ +} +#input:focus-visible ~ #label { + color: var( + --spectrum-checkbox-m-text-color-key-focus, + var(--spectrum-alias-text-color-hover) + ); /* .spectrum-Checkbox-input.focus-ring~.spectrum-Checkbox-label */ +} +:host([emphasized]) #input:checked + #box:before, +:host([emphasized][indeterminate]) #box:before, +:host([emphasized][indeterminate]) #input.focus-visible + #box:before { + border-color: var( + --spectrum-checkbox-m-emphasized-box-border-color-selected, + var(--spectrum-global-color-blue-500) + ); /* .spectrum-Checkbox--emphasized + .spectrum-Checkbox-input:checked + +.spectrum-Checkbox-box:before, + * .spectrum-Checkbox--emphasized.is-indeterminate .spectrum-Checkbox-box:before, + * .spectrum-Checkbox--emphasized.is-indeterminate + .spectrum-Checkbox-input.focus-ring + +.spectrum-Checkbox-box:before */ +} +:host([emphasized]) #input:checked + #box:before, +:host([emphasized][indeterminate]) #box:before, +:host([emphasized][indeterminate]) #input:focus-visible + #box:before { + border-color: var( + --spectrum-checkbox-m-emphasized-box-border-color-selected, + var(--spectrum-global-color-blue-500) + ); /* .spectrum-Checkbox--emphasized + .spectrum-Checkbox-input:checked + +.spectrum-Checkbox-box:before, + * .spectrum-Checkbox--emphasized.is-indeterminate .spectrum-Checkbox-box:before, + * .spectrum-Checkbox--emphasized.is-indeterminate + .spectrum-Checkbox-input.focus-ring + +.spectrum-Checkbox-box:before */ +} +:host([emphasized]:hover) #input:checked + #box:before, +:host([emphasized][indeterminate]:hover) #box:before { + border-color: var( + --spectrum-checkbox-m-emphasized-box-border-color-selected-hover, + var(--spectrum-global-color-blue-600) + ); /* .spectrum-Checkbox--emphasized:hover.is-indeterminate .spectrum-Checkbox-box:before, + * .spectrum-Checkbox--emphasized:hover .spectrum-Checkbox-input:checked+.spectrum-Checkbox-box:before */ +} +:host([emphasized]:active) #input:checked + #box:before, +:host([emphasized][indeterminate]:active) #box:before { + border-color: var( + --spectrum-checkbox-m-emphasized-box-border-color-selected-down, + var(--spectrum-global-color-blue-700) + ); /* .spectrum-Checkbox--emphasized:active.is-indeterminate .spectrum-Checkbox-box:before, + * .spectrum-Checkbox--emphasized:active .spectrum-Checkbox-input:checked+.spectrum-Checkbox-box:before */ +} +:host([invalid][dir]) #box:before, +:host([invalid][dir]) #input:checked + #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-error, + var(--spectrum-global-color-red-500) + ); /* .spectrum-Checkbox.is-invalid .spectrum-Checkbox-input:checked+.spectrum-Checkbox-box:before, + * .spectrum-Checkbox.is-invalid .spectrum-Checkbox-box:before */ +} +:host([invalid]) #label { + color: var( + --spectrum-checkbox-m-text-color-error, + var(--spectrum-global-color-red-600) + ); /* .spectrum-Checkbox.is-invalid .spectrum-Checkbox-label */ +} +:host([invalid]) #input.focus-visible + #box:before, +:host([invalid][indeterminate]) #input.focus-visible + #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-error-hover, + var(--spectrum-global-color-red-600) + ); /* .spectrum-Checkbox.is-invalid.is-indeterminate .spectrum-Checkbox-input.focus-ring+.spectrum-Checkbox-box:before, + * .spectrum-Checkbox.is-invalid .spectrum-Checkbox-input.focus-ring+.spectrum-Checkbox-box:before */ +} +:host([invalid]) #input:focus-visible + #box:before, +:host([invalid][indeterminate]) #input:focus-visible + #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-error-hover, + var(--spectrum-global-color-red-600) + ); /* .spectrum-Checkbox.is-invalid.is-indeterminate .spectrum-Checkbox-input.focus-ring+.spectrum-Checkbox-box:before, + * .spectrum-Checkbox.is-invalid .spectrum-Checkbox-input.focus-ring+.spectrum-Checkbox-box:before */ +} +:host([invalid]) #input.focus-visible ~ #label, +:host([invalid][indeterminate]) #input.focus-visible ~ #label { + color: var( + --spectrum-checkbox-m-text-color-error-hover, + var(--spectrum-global-color-red-700) + ); /* .spectrum-Checkbox.is-invalid.is-indeterminate .spectrum-Checkbox-input.focus-ring~.spectrum-Checkbox-label, + * .spectrum-Checkbox.is-invalid .spectrum-Checkbox-input.focus-ring~.spectrum-Checkbox-label */ +} +:host([invalid]) #input:focus-visible ~ #label, +:host([invalid][indeterminate]) #input:focus-visible ~ #label { + color: var( + --spectrum-checkbox-m-text-color-error-hover, + var(--spectrum-global-color-red-700) + ); /* .spectrum-Checkbox.is-invalid.is-indeterminate .spectrum-Checkbox-input.focus-ring~.spectrum-Checkbox-label, + * .spectrum-Checkbox.is-invalid .spectrum-Checkbox-input.focus-ring~.spectrum-Checkbox-label */ +} +:host([invalid]:hover) #box:before, +:host([invalid][dir]:hover) #input:checked + #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-error-hover, + var(--spectrum-global-color-red-600) + ); /* .spectrum-Checkbox.is-invalid:hover .spectrum-Checkbox-input:checked+.spectrum-Checkbox-box:before, + * .spectrum-Checkbox.is-invalid:hover .spectrum-Checkbox-box:before */ +} +:host([invalid]:hover) #label { + color: var( + --spectrum-checkbox-m-text-color-error-hover, + var(--spectrum-global-color-red-700) + ); /* .spectrum-Checkbox.is-invalid:hover .spectrum-Checkbox-label */ +} +:host([invalid]:active) #box:before, +:host([invalid]:active) #input:checked + #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-error-down, + var(--spectrum-global-color-red-700) + ); /* .spectrum-Checkbox.is-invalid:active .spectrum-Checkbox-input:checked+.spectrum-Checkbox-box:before, + * .spectrum-Checkbox.is-invalid:active .spectrum-Checkbox-box:before */ +} +:host([invalid]:active) #label { + color: var( + --spectrum-checkbox-m-text-color-error-down, + var(--spectrum-global-color-red-700) + ); /* .spectrum-Checkbox.is-invalid:active .spectrum-Checkbox-label */ +} +@media (forced-colors: active) { + :host { + --spectrum-checkbox-m-box-background-color-disabled: ButtonFace; + --spectrum-checkbox-m-box-background-color: ButtonFace; + --spectrum-checkbox-m-box-border-color-disabled: GrayText; + --spectrum-checkbox-m-box-border-color-down: Highlight; + --spectrum-checkbox-m-box-border-color-error-down: Highlight; + --spectrum-checkbox-m-box-border-color-error-hover: Highlight; + --spectrum-checkbox-m-box-border-color-error: Highlight; + --spectrum-checkbox-m-box-border-color-hover: Highlight; + --spectrum-checkbox-m-box-border-color-key-focus: Highlight; + --spectrum-checkbox-m-box-border-color-selected-down: Highlight; + --spectrum-checkbox-m-box-border-color-selected-hover: Highlight; + --spectrum-checkbox-m-box-border-color-selected-key-focus: Highlight; + --spectrum-checkbox-m-box-border-color-selected: Highlight; + --spectrum-checkbox-m-box-border-color: ButtonText; + --spectrum-checkbox-m-checkmark-color: HighlightText; + --spectrum-checkbox-m-emphasized-box-border-color-selected-down: Highlight; + --spectrum-checkbox-m-emphasized-box-border-color-selected-hover: Highlight; + --spectrum-checkbox-m-emphasized-box-border-color-selected: Highlight; + --spectrum-checkbox-m-focus-ring-color-key-focus: FieldText; + --spectrum-checkbox-m-text-color-disabled: GrayText; + --spectrum-checkbox-m-text-color-down: FieldText; + --spectrum-checkbox-m-text-color-error-down: FieldText; + --spectrum-checkbox-m-text-color-error-hover: FieldText; + --spectrum-checkbox-m-text-color-error: FieldText; + --spectrum-checkbox-m-text-color-hover: FieldText; + --spectrum-checkbox-m-text-color-key-focus: FieldText; + --spectrum-checkbox-m-text-color: FieldText; + } + :host([invalid][dir]) #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color, + var(--spectrum-global-color-gray-600) + ); + } + :host([invalid][indeterminate]) #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-error, + var(--spectrum-global-color-red-500) + ); + } + :host([invalid][dir]) #input:checked + #box:before { + border-color: var( + --spectrum-checkbox-m-box-border-color-error, + var(--spectrum-global-color-red-500) + ); + } +} diff --git a/packages/checkbox/src/spectrum-checkbox.css b/packages/checkbox/src/spectrum-checkbox.css index 9fbf65a97c1..55e7428c3ff 100644 --- a/packages/checkbox/src/spectrum-checkbox.css +++ b/packages/checkbox/src/spectrum-checkbox.css @@ -12,6 +12,24 @@ governing permissions and limitations under the License. */ @import './vars.css'; + +:host { + display: inline-flex; + vertical-align: top; +} + +:host(:focus) { + outline: none; +} + +:host([disabled]) { + pointer-events: none; +} + +:host(:empty) label { + display: none; +} + :host { align-items: flex-start; display: inline-flex; /* .spectrum-Checkbox */ diff --git a/packages/checkbox/src/vars.css b/packages/checkbox/src/vars.css index d47ca7a52c5..ceb19d05843 100644 --- a/packages/checkbox/src/vars.css +++ b/packages/checkbox/src/vars.css @@ -24,19 +24,13 @@ governing permissions and limitations under the License. --spectrum-alias-component-text-line-height ); --spectrum-checkbox-s-box-border-radius: var( - --spectrum-alias-border-radius-small + --spectrum-alias-border-radius-regular ); --spectrum-checkbox-s-box-border-size: var( - --spectrum-alias-border-size-thick + --spectrum-alias-border-size-thin ); --spectrum-checkbox-s-text-size: var(--spectrum-alias-item-text-size-s); - --spectrum-checkbox-s-text-padding-top: var( - --spectrum-alias-item-text-padding-top-s - ); --spectrum-checkbox-s-height: var(--spectrum-alias-item-height-s); - --spectrum-checkbox-s-checkmark-size: var( - --spectrum-alias-ui-icon-checkmark-size-75 - ); --spectrum-checkbox-s-box-size: var(--spectrum-alias-item-control-2-size-s); --spectrum-checkbox-s-text-gap: var(--spectrum-alias-item-control-gap-s); --spectrum-checkbox-m-text-font-style: var( @@ -49,19 +43,13 @@ governing permissions and limitations under the License. --spectrum-alias-component-text-line-height ); --spectrum-checkbox-m-box-border-radius: var( - --spectrum-alias-border-radius-small + --spectrum-alias-border-radius-regular ); --spectrum-checkbox-m-box-border-size: var( - --spectrum-alias-border-size-thick + --spectrum-alias-border-size-thin ); --spectrum-checkbox-m-text-size: var(--spectrum-alias-item-text-size-m); - --spectrum-checkbox-m-text-padding-top: var( - --spectrum-alias-item-text-padding-top-m - ); --spectrum-checkbox-m-height: var(--spectrum-alias-item-height-m); - --spectrum-checkbox-m-checkmark-size: var( - --spectrum-alias-ui-icon-checkmark-size-100 - ); --spectrum-checkbox-m-box-size: var(--spectrum-alias-item-control-2-size-m); --spectrum-checkbox-m-text-gap: var(--spectrum-alias-item-control-gap-m); --spectrum-checkbox-l-text-font-style: var( @@ -74,19 +62,13 @@ governing permissions and limitations under the License. --spectrum-alias-component-text-line-height ); --spectrum-checkbox-l-box-border-radius: var( - --spectrum-alias-border-radius-small + --spectrum-alias-border-radius-regular ); --spectrum-checkbox-l-box-border-size: var( - --spectrum-alias-border-size-thick + --spectrum-alias-border-size-thin ); --spectrum-checkbox-l-text-size: var(--spectrum-alias-item-text-size-l); - --spectrum-checkbox-l-text-padding-top: var( - --spectrum-alias-item-text-padding-top-l - ); --spectrum-checkbox-l-height: var(--spectrum-alias-item-height-l); - --spectrum-checkbox-l-checkmark-size: var( - --spectrum-alias-ui-icon-checkmark-size-200 - ); --spectrum-checkbox-l-box-size: var(--spectrum-alias-item-control-2-size-l); --spectrum-checkbox-l-text-gap: var(--spectrum-alias-item-control-gap-l); --spectrum-checkbox-xl-text-font-style: var( @@ -99,63 +81,59 @@ governing permissions and limitations under the License. --spectrum-alias-component-text-line-height ); --spectrum-checkbox-xl-box-border-radius: var( - --spectrum-alias-border-radius-small + --spectrum-alias-border-radius-regular ); --spectrum-checkbox-xl-box-border-size: var( - --spectrum-alias-border-size-thick + --spectrum-alias-border-size-thin ); --spectrum-checkbox-xl-text-size: var(--spectrum-alias-item-text-size-xl); - --spectrum-checkbox-xl-text-padding-top: var( - --spectrum-alias-item-text-padding-top-xl - ); --spectrum-checkbox-xl-height: var(--spectrum-alias-item-height-xl); - --spectrum-checkbox-xl-checkmark-size: var( - --spectrum-alias-ui-icon-checkmark-size-300 - ); --spectrum-checkbox-xl-box-size: var( --spectrum-alias-item-control-2-size-xl ); --spectrum-checkbox-xl-text-gap: var(--spectrum-alias-item-control-gap-xl); - --spectrum-checkbox-m-text-color: var(--spectrum-alias-text-color); - --spectrum-checkbox-m-checkmark-color: var(--spectrum-global-color-gray-75); + --spectrum-checkbox-m-text-color: var(--spectrum-alias-text-color-primary); + --spectrum-checkbox-m-checkmark-color: var( + --spectrum-global-color-gray-100 + ); --spectrum-checkbox-m-box-border-color: var( - --spectrum-global-color-gray-600 + --spectrum-global-color-gray-500 ); --spectrum-checkbox-m-box-background-color: var( --spectrum-global-color-gray-75 ); --spectrum-checkbox-m-box-border-color-selected: var( - --spectrum-global-color-gray-700 + --spectrum-global-color-primary-500 ); --spectrum-checkbox-m-box-border-color-selected-hover: var( - --spectrum-global-color-gray-800 + --spectrum-global-color-primary-600 ); --spectrum-checkbox-m-box-border-color-selected-down: var( - --spectrum-global-color-gray-900 + --spectrum-global-color-primary-700 ); --spectrum-checkbox-m-box-border-color-hover: var( - --spectrum-global-color-gray-700 + --spectrum-global-color-gray-600 ); --spectrum-checkbox-m-text-color-hover: var( - --spectrum-alias-text-color-hover + --spectrum-alias-text-color-primary ); --spectrum-checkbox-m-box-border-color-down: var( - --spectrum-global-color-gray-800 + --spectrum-global-color-gray-700 ); --spectrum-checkbox-m-text-color-down: var( - --spectrum-alias-text-color-down + --spectrum-alias-text-color-primary ); --spectrum-checkbox-m-box-border-color-disabled: var( - --spectrum-global-color-gray-400 + --spectrum-global-color-gray-500 ); --spectrum-checkbox-m-box-background-color-disabled: var( - --spectrum-global-color-gray-75 + --spectrum-global-color-gray-300 ); --spectrum-checkbox-m-text-color-disabled: var( --spectrum-alias-text-color-disabled ); --spectrum-checkbox-m-box-border-color-key-focus: var( - --spectrum-global-color-gray-700 + --spectrum-global-color-gray-600 ); --spectrum-checkbox-m-focus-ring-size-key-focus: var( --spectrum-alias-focus-ring-size @@ -164,36 +142,36 @@ governing permissions and limitations under the License. --spectrum-alias-focus-ring-color ); --spectrum-checkbox-m-box-border-color-selected-key-focus: var( - --spectrum-global-color-gray-800 + --spectrum-global-color-gray-600 ); --spectrum-checkbox-m-text-color-key-focus: var( - --spectrum-alias-text-color-hover + --spectrum-alias-text-color-primary ); --spectrum-checkbox-m-emphasized-box-border-color-selected: var( - --spectrum-global-color-blue-500 + --spectrum-global-color-primary-500 ); --spectrum-checkbox-m-emphasized-box-border-color-selected-hover: var( - --spectrum-global-color-blue-600 + --spectrum-global-color-primary-600 ); --spectrum-checkbox-m-emphasized-box-border-color-selected-down: var( - --spectrum-global-color-blue-700 + --spectrum-global-color-primary-700 ); --spectrum-checkbox-m-box-border-color-error: var( --spectrum-global-color-red-500 ); --spectrum-checkbox-m-text-color-error: var( - --spectrum-global-color-red-600 + --spectrum-global-color-red-500 ); --spectrum-checkbox-m-box-border-color-error-hover: var( --spectrum-global-color-red-600 ); --spectrum-checkbox-m-text-color-error-hover: var( - --spectrum-global-color-red-700 + --spectrum-global-color-red-500 ); --spectrum-checkbox-m-box-border-color-error-down: var( --spectrum-global-color-red-700 ); --spectrum-checkbox-m-text-color-error-down: var( - --spectrum-global-color-red-700 + --spectrum-global-color-red-500 ); } diff --git a/packages/help-text/package.json b/packages/help-text/package.json index c8eabf15e86..e185bebf77f 100644 --- a/packages/help-text/package.json +++ b/packages/help-text/package.json @@ -47,8 +47,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/base": "^0.6.0", - "@iliad-ui/icons-workflow": "^0.8.12", + "@iliad-ui/base": "^0.12.2", + "@iliad-ui/icons-workflow": "^0.13.2", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/icons/src/icons-editor.svg.ts b/packages/icons/src/icons-editor.svg.ts index 3995238e278..afc39027638 100644 --- a/packages/icons/src/icons-editor.svg.ts +++ b/packages/icons/src/icons-editor.svg.ts @@ -11,4 +11,4 @@ OF ANY KIND, either express or implied. See the License for the specific languag governing permissions and limitations under the License. */ import { svg } from '@iliad-ui/base'; -export default svg``; +export default svg``; diff --git a/packages/styles/core-global.css b/packages/styles/core-global.css index fae1ff6d979..75e65574a38 100644 --- a/packages/styles/core-global.css +++ b/packages/styles/core-global.css @@ -481,9 +481,6 @@ governing permissions and limitations under the License. --spectrum-alias-body-text-font-family: var( --spectrum-global-font-family-base ); - --spectrum-alias-body-text-line-height: var( - --spectrum-global-font-line-height-medium - ); --spectrum-alias-body-text-font-weight: var( --spectrum-global-font-weight-regular ); @@ -491,16 +488,19 @@ governing permissions and limitations under the License. --spectrum-global-font-weight-bold ); --spectrum-alias-button-text-line-height: var( - --spectrum-global-font-line-height-small + --spectrum-global-font-line-height-medium + ); + --spectrum-alias-body-text-line-height: var( + --spectrum-global-font-line-height-medium ); --spectrum-alias-component-text-line-height: var( - --spectrum-global-font-line-height-small + --spectrum-global-font-line-height-medium ); --spectrum-alias-han-component-text-line-height: var( --spectrum-global-font-line-height-medium ); --spectrum-alias-heading-text-line-height: var( - --spectrum-global-font-line-height-small + --spectrum-global-font-line-height-medium ); --spectrum-alias-heading-text-font-weight-regular: var( --spectrum-global-font-weight-bold @@ -892,17 +892,20 @@ governing permissions and limitations under the License. --spectrum-alias-item-control-1-size-m: var( --spectrum-global-dimension-size-100 ); + --spectrum-alias-item-control-2-size-s: var( + --spectrum-global-dimension-size-150 + ); --spectrum-alias-item-control-2-size-m: var( - --spectrum-global-dimension-size-175 + --spectrum-global-dimension-size-200 ); --spectrum-alias-item-control-2-size-l: var( - --spectrum-global-dimension-size-200 + --spectrum-global-dimension-size-225 ); --spectrum-alias-item-control-2-size-xl: var( - --spectrum-global-dimension-size-225 + --spectrum-global-dimension-size-250 ); --spectrum-alias-item-control-2-size-xxl: var( - --spectrum-global-dimension-size-250 + --spectrum-global-dimension-size-300 ); --spectrum-alias-item-control-3-height-m: var( --spectrum-global-dimension-size-175 @@ -1388,7 +1391,7 @@ governing permissions and limitations under the License. --spectrum-alias-text-color-primary: rgba(0, 0, 0, 0.88); --spectrum-alias-text-color-secondary: rgba(0, 0, 0, 0.72); --spectrum-alias-text-color-placeholder: rgba(0, 0, 0, 0.52); - --spectrum-alias-text-color-disabled: rgba(0, 0, 0, 0.32); + --spectrum-alias-text-color-disabled: rgba(0, 0, 0, 0.24); --spectrum-alias-text-color-link: #2576f0; --spectrum-alias-icon-color-primary: var(--spectrum-global-color-gray-900); --spectrum-alias-icon-color-secondary: var( diff --git a/packages/styles/gulpfile.cjs b/packages/styles/gulpfile.cjs index 6bc03e8bfa2..447c7b19e1a 100644 --- a/packages/styles/gulpfile.cjs +++ b/packages/styles/gulpfile.cjs @@ -22,6 +22,7 @@ const replace = require('gulp-replace'); const fs = require('fs-extra'); const multiDest = require('gulp-multi-dest'); const del = require('del'); +const prettier = require('gulp-prettier'); gulp.task('variable', function variable() { const allFiles = fs.readdirSync('scss'); @@ -59,6 +60,15 @@ gulp.task('scss', function scss() { }) ) .pipe(sass().on('error', sass.logError)) + .pipe( + prettier({ + printWidth: 80, + tabWidth: 4, + useTabs: false, + semi: true, + singleQuote: true, + }) + ) .pipe(gulp.dest('.')); }); diff --git a/packages/styles/package.json b/packages/styles/package.json index 219691463b3..cc96d71dd50 100644 --- a/packages/styles/package.json +++ b/packages/styles/package.json @@ -86,6 +86,7 @@ "gulp-dart-sass": "^1.0.2", "gulp-multi-dest": "^1.3.7", "gulp-order": "^1.2.0", + "gulp-prettier": "^4.0.0", "gulp-replace": "^1.1.3", "gulp-sass": "^5.0.0", "gulp-uglify": "^3.0.2", diff --git a/packages/styles/scss/core-global/dimensionAliases.scss b/packages/styles/scss/core-global/dimensionAliases.scss index 0ea620af1bc..655ee67271e 100644 --- a/packages/styles/scss/core-global/dimensionAliases.scss +++ b/packages/styles/scss/core-global/dimensionAliases.scss @@ -200,17 +200,20 @@ governing permissions and limitations under the License. --spectrum-alias-item-control-1-size-m: var( --spectrum-global-dimension-size-100 ); + --spectrum-alias-item-control-2-size-s: var( + --spectrum-global-dimension-size-150 + ); --spectrum-alias-item-control-2-size-m: var( - --spectrum-global-dimension-size-175 + --spectrum-global-dimension-size-200 ); --spectrum-alias-item-control-2-size-l: var( - --spectrum-global-dimension-size-200 + --spectrum-global-dimension-size-225 ); --spectrum-alias-item-control-2-size-xl: var( - --spectrum-global-dimension-size-225 + --spectrum-global-dimension-size-250 ); --spectrum-alias-item-control-2-size-xxl: var( - --spectrum-global-dimension-size-250 + --spectrum-global-dimension-size-300 ); --spectrum-alias-item-control-3-height-m: var( --spectrum-global-dimension-size-175 diff --git a/packages/styles/scss/core-global/staticAliases.scss b/packages/styles/scss/core-global/staticAliases.scss index c23c6ad5138..9185c0f479e 100644 --- a/packages/styles/scss/core-global/staticAliases.scss +++ b/packages/styles/scss/core-global/staticAliases.scss @@ -112,9 +112,6 @@ governing permissions and limitations under the License. --spectrum-alias-body-text-font-family: var( --spectrum-global-font-family-base ); - --spectrum-alias-body-text-line-height: var( - --spectrum-global-font-line-height-medium - ); --spectrum-alias-body-text-font-weight: var( --spectrum-global-font-weight-regular ); @@ -122,16 +119,19 @@ governing permissions and limitations under the License. --spectrum-global-font-weight-bold ); --spectrum-alias-button-text-line-height: var( - --spectrum-global-font-line-height-small + --spectrum-global-font-line-height-medium + ); + --spectrum-alias-body-text-line-height: var( + --spectrum-global-font-line-height-medium ); --spectrum-alias-component-text-line-height: var( - --spectrum-global-font-line-height-small + --spectrum-global-font-line-height-medium ); --spectrum-alias-han-component-text-line-height: var( --spectrum-global-font-line-height-medium ); --spectrum-alias-heading-text-line-height: var( - --spectrum-global-font-line-height-small + --spectrum-global-font-line-height-medium ); --spectrum-alias-heading-text-font-weight-regular: var( --spectrum-global-font-weight-bold diff --git a/packages/styles/scss/variable-theme-light.scss b/packages/styles/scss/variable-theme-light.scss index 1a85e60a873..d957cadaa01 100644 --- a/packages/styles/scss/variable-theme-light.scss +++ b/packages/styles/scss/variable-theme-light.scss @@ -49,7 +49,7 @@ $global-color-positive: rgba($global-color-static-green-500, 1); $global-text-color-primary: rgba($global-color-static-black, 0.88); $global-text-color-secondary: rgba($global-color-static-black, 0.72); $global-text-color-placeholder: rgba($global-color-static-black, 0.52); -$global-text-color-disabled: rgba($global-color-static-black, 0.32); +$global-text-color-disabled: rgba($global-color-static-black, 0.24); $global-text-color-link: rgba($global-color-static-primary-500, 1); // Part IconColor diff --git a/packages/styles/theme-light.css b/packages/styles/theme-light.css index 720a29d5322..ba61720dee8 100644 --- a/packages/styles/theme-light.css +++ b/packages/styles/theme-light.css @@ -187,7 +187,7 @@ governing permissions and limitations under the License. --spectrum-alias-text-color-primary: rgba(0, 0, 0, 0.88); --spectrum-alias-text-color-secondary: rgba(0, 0, 0, 0.72); --spectrum-alias-text-color-placeholder: rgba(0, 0, 0, 0.52); - --spectrum-alias-text-color-disabled: rgba(0, 0, 0, 0.32); + --spectrum-alias-text-color-disabled: rgba(0, 0, 0, 0.24); --spectrum-alias-text-color-link: #2576f0; --spectrum-alias-icon-color-primary: var(--spectrum-global-color-gray-900); --spectrum-alias-icon-color-secondary: var( From a5a6c57d724798f341b9efca3b4eb15f19a3777c Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Thu, 10 Nov 2022 17:24:52 +0800 Subject: [PATCH 16/28] =?UTF-8?q?feat:=20cta=E6=A0=B7=E5=BC=8F=E9=A2=9C?= =?UTF-8?q?=E8=89=B2=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/button/src/vars.css | 12 ++++++------ packages/styles/core-global.css | 4 ++-- packages/styles/scss/core-global/colorSemantics.scss | 12 ++++++------ 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/packages/button/src/vars.css b/packages/button/src/vars.css index 34be5b55f5b..0c3b8cf8e7d 100644 --- a/packages/button/src/vars.css +++ b/packages/button/src/vars.css @@ -416,28 +416,28 @@ governing permissions and limitations under the License. --spectrum-global-color-static-white ); --spectrum-button-warning-m-background-color-hover: var( - --spectrum-global-color-red-400 + --spectrum-global-color-red-600 ); --spectrum-button-warning-m-border-color-hover: var( - --spectrum-global-color-red-400 + --spectrum-global-color-red-600 ); --spectrum-button-warning-m-text-color-hover: var( --spectrum-global-color-static-white ); --spectrum-button-warning-m-background-color-key-focus: var( - --spectrum-global-color-red-400 + --spectrum-global-color-red-500 ); --spectrum-button-warning-m-border-color-key-focus: var( - --spectrum-global-color-red-400 + --spectrum-global-color-red-500 ); --spectrum-button-warning-m-text-color-key-focus: var( --spectrum-global-color-static-white ); --spectrum-button-warning-m-background-color-down: var( - --spectrum-global-color-red-600 + --spectrum-global-color-red-700 ); --spectrum-button-warning-m-border-color-down: var( - --spectrum-global-color-red-600 + --spectrum-global-color-red-700 ); --spectrum-button-warning-m-text-color-down: var( --spectrum-global-color-static-white diff --git a/packages/styles/core-global.css b/packages/styles/core-global.css index 75e65574a38..40e80b8f9bc 100644 --- a/packages/styles/core-global.css +++ b/packages/styles/core-global.css @@ -1635,10 +1635,10 @@ governing permissions and limitations under the License. --spectrum-global-color-static-primary-500 ); --spectrum-semantic-cta-color-background-hover: var( - --spectrum-global-color-static-primary-400 + --spectrum-global-color-static-primary-600 ); --spectrum-semantic-cta-color-background-down: var( - --spectrum-global-color-static-primary-600 + --spectrum-global-color-static-primary-700 ); --spectrum-semantic-cta-color-background-key-focus: var( --spectrum-global-color-static-primary-500 diff --git a/packages/styles/scss/core-global/colorSemantics.scss b/packages/styles/scss/core-global/colorSemantics.scss index 66cb316d352..5fda3025cb6 100644 --- a/packages/styles/scss/core-global/colorSemantics.scss +++ b/packages/styles/scss/core-global/colorSemantics.scss @@ -173,25 +173,25 @@ governing permissions and limitations under the License. --spectrum-global-color-blue-400 ); --spectrum-semantic-informative-background-color-default: var( - --spectrum-global-color-blue-600 + --spectrum-global-color-blue-500 ); --spectrum-semantic-informative-background-color-hover: var( - --spectrum-global-color-blue-700 + --spectrum-global-color-blue-600 ); --spectrum-semantic-informative-background-color-down: var( - --spectrum-global-color-blue-800 + --spectrum-global-color-blue-700 ); --spectrum-semantic-informative-background-color-key-focus: var( - --spectrum-global-color-blue-700 + --spectrum-global-color-blue-500 ); --spectrum-semantic-cta-color-background-default: var( --spectrum-global-color-static-primary-500 ); --spectrum-semantic-cta-color-background-hover: var( - --spectrum-global-color-static-primary-400 + --spectrum-global-color-static-primary-600 ); --spectrum-semantic-cta-color-background-down: var( - --spectrum-global-color-static-primary-600 + --spectrum-global-color-static-primary-700 ); --spectrum-semantic-cta-color-background-key-focus: var( --spectrum-global-color-static-primary-500 From e14ff65fc196de54157769488e684e27b8594b9b Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Thu, 10 Nov 2022 18:50:30 +0800 Subject: [PATCH 17/28] =?UTF-8?q?build:=20icon=E6=9E=84=E5=BB=BA=E4=BC=98?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/icons-editor/bin/template.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/packages/icons-editor/bin/template.js b/packages/icons-editor/bin/template.js index dfc501ea492..319c860129e 100644 --- a/packages/icons-editor/bin/template.js +++ b/packages/icons-editor/bin/template.js @@ -43,6 +43,14 @@ export const generateIconComponentRegistrationTemplate = (icon) => { return `${CopyHeader}${content}`; }; +// 对svg内容做一些处理 +const handleSvgContent = (content) => { + // 去除svg的fill内容 + const reg = /fill=".+?"/gi; + content = content.replace(reg, ''); + return content; +}; + // 生成到src/elements 输出为icon元素 export const generateIconComponentSvgTemplate = (icon) => { const { name, svg } = icon; @@ -50,7 +58,7 @@ export const generateIconComponentSvgTemplate = (icon) => { import {tag as html, TemplateResult} from '../custom-tag.js'; export {setCustomTemplateLiteralTag} from '../custom-tag.js'; export const ${name}Icon = (): string | TemplateResult => { - return html\`${svg}\`; + return html\`${handleSvgContent(svg)}\`; } `; return `${CopyHeader}${content}`; From bb22233526b05aff7827b18d5f468eac1f84616c Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Thu, 10 Nov 2022 19:06:40 +0800 Subject: [PATCH 18/28] =?UTF-8?q?feat:=20icons=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/icons-editor/src/icons/Add.ts | 2 -- packages/icons-editor/src/icons/Alert.ts | 2 -- packages/icons-editor/src/icons/AlertFill.ts | 2 -- .../icons-editor/src/icons/AlignArrangeHoriz.ts | 2 -- packages/icons-editor/src/icons/AlignArrangeVert.ts | 2 -- packages/icons-editor/src/icons/AlignBottom.ts | 2 -- .../icons-editor/src/icons/AlignHorizCenters.ts | 2 -- packages/icons-editor/src/icons/AlignLeft.ts | 2 -- packages/icons-editor/src/icons/AlignRight.ts | 2 -- packages/icons-editor/src/icons/AlignTop.ts | 2 -- packages/icons-editor/src/icons/AlignVertCenters.ts | 2 -- packages/icons-editor/src/icons/Animation.ts | 8 ++------ packages/icons-editor/src/icons/ArrowDownSmall.ts | 2 -- packages/icons-editor/src/icons/ArrowLeft.ts | 2 -- packages/icons-editor/src/icons/ArrowRight.ts | 2 -- packages/icons-editor/src/icons/ArrowRightSmall.ts | 2 -- packages/icons-editor/src/icons/ArrowTriangle.ts | 5 ++--- packages/icons-editor/src/icons/Backspace.ts | 2 -- packages/icons-editor/src/icons/Check.ts | 2 -- packages/icons-editor/src/icons/CheckFill.ts | 2 -- packages/icons-editor/src/icons/Clear.ts | 2 -- packages/icons-editor/src/icons/Close.ts | 2 -- packages/icons-editor/src/icons/CloseFull.ts | 4 +--- packages/icons-editor/src/icons/CloudDone.ts | 2 -- packages/icons-editor/src/icons/CloudOff.ts | 2 -- packages/icons-editor/src/icons/Colorpicker.ts | 2 -- packages/icons-editor/src/icons/Command.ts | 2 -- packages/icons-editor/src/icons/Contacts.ts | 2 -- packages/icons-editor/src/icons/Container.ts | 2 -- packages/icons-editor/src/icons/Copy.ts | 2 -- packages/icons-editor/src/icons/Corner.ts | 2 -- .../src/icons/CornerRadiusBottomLeft.ts | 2 -- .../src/icons/CornerRadiusBottomRight.ts | 2 -- .../icons-editor/src/icons/CornerRadiusTopLeft.ts | 2 -- .../icons-editor/src/icons/CornerRadiusTopRight.ts | 2 -- packages/icons-editor/src/icons/Crop.ts | 2 -- packages/icons-editor/src/icons/DataBarchart.ts | 2 -- packages/icons-editor/src/icons/Delete.ts | 3 --- packages/icons-editor/src/icons/Desktop.ts | 2 -- packages/icons-editor/src/icons/DirectionCenter.ts | 2 -- packages/icons-editor/src/icons/DirectionDown.ts | 2 -- packages/icons-editor/src/icons/DirectionLeft.ts | 2 -- packages/icons-editor/src/icons/DirectionRight.ts | 2 -- packages/icons-editor/src/icons/DirectionUp.ts | 2 -- packages/icons-editor/src/icons/Display.ts | 5 ++--- packages/icons-editor/src/icons/Done.ts | 2 -- packages/icons-editor/src/icons/DragHandle.ts | 4 +--- packages/icons-editor/src/icons/Earth.ts | 2 -- packages/icons-editor/src/icons/Easeincubic.ts | 2 -- packages/icons-editor/src/icons/Easeinoutcubic.ts | 2 -- packages/icons-editor/src/icons/Easeinquad.ts | 2 -- packages/icons-editor/src/icons/Easeoutback.ts | 2 -- packages/icons-editor/src/icons/Easeoutbounce.ts | 2 -- packages/icons-editor/src/icons/Easeoutcubic.ts | 2 -- packages/icons-editor/src/icons/Easeoutelastic.ts | 2 -- packages/icons-editor/src/icons/Easeoutquad.ts | 2 -- packages/icons-editor/src/icons/Edit.ts | 4 +--- packages/icons-editor/src/icons/Effect.ts | 3 --- packages/icons-editor/src/icons/Event.ts | 4 +--- packages/icons-editor/src/icons/Eye.ts | 2 -- packages/icons-editor/src/icons/EyeDisplay.ts | 2 -- packages/icons-editor/src/icons/EyeOff.ts | 2 -- packages/icons-editor/src/icons/Figma.ts | 2 -- packages/icons-editor/src/icons/FigmaStatic.ts | 13 +------------ packages/icons-editor/src/icons/FileFolder.ts | 2 -- packages/icons-editor/src/icons/FileOutline.ts | 2 -- packages/icons-editor/src/icons/Fixed.ts | 4 +--- packages/icons-editor/src/icons/Focus.ts | 2 -- .../icons-editor/src/icons/FormatAlignBottom.ts | 2 -- .../icons-editor/src/icons/FormatAlignMedium.ts | 2 -- packages/icons-editor/src/icons/FormatAlignTop.ts | 2 -- packages/icons-editor/src/icons/FormatCenter.ts | 2 -- .../icons-editor/src/icons/FormatIndentDecrease.ts | 2 -- .../icons-editor/src/icons/FormatIndentIncrease.ts | 4 +--- packages/icons-editor/src/icons/FormatJustified.ts | 2 -- packages/icons-editor/src/icons/FormatLeft.ts | 2 -- .../icons-editor/src/icons/FormatListBulleted.ts | 2 -- .../icons-editor/src/icons/FormatListNumbered.ts | 3 --- .../icons-editor/src/icons/FormatPacingLines.ts | 2 -- packages/icons-editor/src/icons/FormatRight.ts | 2 -- .../icons-editor/src/icons/FormatSpacingLetter.ts | 2 -- packages/icons-editor/src/icons/Global.ts | 2 -- packages/icons-editor/src/icons/GridOutline.ts | 2 -- packages/icons-editor/src/icons/HeightFill.ts | 2 -- packages/icons-editor/src/icons/HeightFixed.ts | 2 -- packages/icons-editor/src/icons/HeightHug.ts | 2 -- packages/icons-editor/src/icons/Help.ts | 2 -- packages/icons-editor/src/icons/HelpFill.ts | 2 -- packages/icons-editor/src/icons/Home.ts | 2 -- packages/icons-editor/src/icons/HorizBottom.ts | 2 -- packages/icons-editor/src/icons/HorizCenters.ts | 2 -- packages/icons-editor/src/icons/HorizTop.ts | 2 -- packages/icons-editor/src/icons/Image.ts | 2 -- packages/icons-editor/src/icons/Import.ts | 2 -- packages/icons-editor/src/icons/Info.ts | 2 -- packages/icons-editor/src/icons/InfoFill.ts | 2 -- packages/icons-editor/src/icons/Inspire.ts | 2 -- packages/icons-editor/src/icons/LabelC.ts | 2 -- .../icons-editor/src/icons/LabelClosebracket.ts | 2 -- packages/icons-editor/src/icons/LabelD.ts | 2 -- packages/icons-editor/src/icons/LabelG.ts | 2 -- packages/icons-editor/src/icons/LabelOpenbracket.ts | 2 -- packages/icons-editor/src/icons/LabelV.ts | 2 -- packages/icons-editor/src/icons/LabelX.ts | 2 -- packages/icons-editor/src/icons/LabelY.ts | 2 -- packages/icons-editor/src/icons/LabelZ.ts | 2 -- packages/icons-editor/src/icons/Layers.ts | 2 -- packages/icons-editor/src/icons/LayoutHorz.ts | 2 -- packages/icons-editor/src/icons/LayoutPageturn.ts | 2 -- packages/icons-editor/src/icons/LayoutSliding.ts | 2 -- packages/icons-editor/src/icons/LayoutVert.ts | 2 -- packages/icons-editor/src/icons/LayoutWrap.ts | 2 -- packages/icons-editor/src/icons/Linear.ts | 2 -- packages/icons-editor/src/icons/Link.ts | 2 -- packages/icons-editor/src/icons/Loading.ts | 3 --- packages/icons-editor/src/icons/LoadingWhite.ts | 3 --- packages/icons-editor/src/icons/Locate.ts | 2 -- packages/icons-editor/src/icons/Locked.ts | 2 -- packages/icons-editor/src/icons/Materiel.ts | 4 +--- packages/icons-editor/src/icons/Menu.ts | 2 -- packages/icons-editor/src/icons/MoreHoriz.ts | 4 +--- packages/icons-editor/src/icons/MouseClick.ts | 2 -- packages/icons-editor/src/icons/MouseHover.ts | 2 -- packages/icons-editor/src/icons/Move.ts | 2 -- packages/icons-editor/src/icons/None.ts | 2 -- packages/icons-editor/src/icons/OpenFull.ts | 4 +--- packages/icons-editor/src/icons/OpenInNew.ts | 2 -- packages/icons-editor/src/icons/Option.ts | 2 -- packages/icons-editor/src/icons/Padding.ts | 2 -- packages/icons-editor/src/icons/PaddingBottom.ts | 2 -- .../icons-editor/src/icons/PaddingIndependent.ts | 2 -- packages/icons-editor/src/icons/PaddingLeft.ts | 2 -- packages/icons-editor/src/icons/PaddingRight.ts | 2 -- packages/icons-editor/src/icons/PaddingTop.ts | 2 -- packages/icons-editor/src/icons/PageFooter.ts | 2 -- packages/icons-editor/src/icons/PageHeader.ts | 2 -- packages/icons-editor/src/icons/Pages.ts | 2 -- packages/icons-editor/src/icons/Paragraph.ts | 2 -- packages/icons-editor/src/icons/Play.ts | 2 -- packages/icons-editor/src/icons/Publish.ts | 2 -- packages/icons-editor/src/icons/QrCode.ts | 2 -- .../icons-editor/src/icons/RadioButtonUnchecked.ts | 3 --- packages/icons-editor/src/icons/Redo.ts | 2 -- packages/icons-editor/src/icons/Remove.ts | 4 +--- packages/icons-editor/src/icons/RotateLeft.ts | 2 -- packages/icons-editor/src/icons/Scale.ts | 2 -- packages/icons-editor/src/icons/Scroll.ts | 2 -- packages/icons-editor/src/icons/Section.ts | 4 +--- packages/icons-editor/src/icons/Settings.ts | 2 -- packages/icons-editor/src/icons/Share.ts | 2 -- packages/icons-editor/src/icons/Shift.ts | 2 -- packages/icons-editor/src/icons/SketchStatic.ts | 9 +-------- packages/icons-editor/src/icons/Skew.ts | 2 -- packages/icons-editor/src/icons/SliderInvisible.ts | 2 -- packages/icons-editor/src/icons/Smartphone.ts | 2 -- packages/icons-editor/src/icons/SpacingHoriz.ts | 2 -- packages/icons-editor/src/icons/SpacingVert.ts | 2 -- packages/icons-editor/src/icons/Star.ts | 2 -- packages/icons-editor/src/icons/Stop.ts | 2 -- packages/icons-editor/src/icons/StopCircle.ts | 2 -- packages/icons-editor/src/icons/Style.ts | 2 -- packages/icons-editor/src/icons/TabletMac.ts | 2 -- packages/icons-editor/src/icons/Tag.ts | 2 -- packages/icons-editor/src/icons/Text.ts | 2 -- packages/icons-editor/src/icons/TextBold.ts | 2 -- packages/icons-editor/src/icons/TextDeleteline.ts | 2 -- packages/icons-editor/src/icons/TextItaly.ts | 2 -- packages/icons-editor/src/icons/TextScale.ts | 2 -- packages/icons-editor/src/icons/TextUnderline.ts | 2 -- packages/icons-editor/src/icons/Theme.ts | 3 --- packages/icons-editor/src/icons/Time.ts | 2 -- packages/icons-editor/src/icons/Trigger.ts | 5 ++--- packages/icons-editor/src/icons/Tune.ts | 2 -- packages/icons-editor/src/icons/Undo.ts | 2 -- packages/icons-editor/src/icons/Unit.ts | 3 --- packages/icons-editor/src/icons/Unlocked.ts | 2 -- packages/icons-editor/src/icons/VertCenters.ts | 2 -- packages/icons-editor/src/icons/VertLeft.ts | 2 -- packages/icons-editor/src/icons/VertRight.ts | 2 -- packages/icons-editor/src/icons/Video.ts | 2 -- packages/icons-editor/src/icons/WidthFill.ts | 2 -- packages/icons-editor/src/icons/WidthFixed.ts | 2 -- packages/icons-editor/src/icons/WidthHug.ts | 2 -- packages/icons-editor/src/icons/Wrap.ts | 2 -- packages/icons-editor/src/svg/ArrowDown.svg | 3 --- 185 files changed, 21 insertions(+), 413 deletions(-) delete mode 100644 packages/icons-editor/src/svg/ArrowDown.svg diff --git a/packages/icons-editor/src/icons/Add.ts b/packages/icons-editor/src/icons/Add.ts index ffdcb8ec1d5..b01a3e460cb 100644 --- a/packages/icons-editor/src/icons/Add.ts +++ b/packages/icons-editor/src/icons/Add.ts @@ -19,14 +19,12 @@ export const AddIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Alert.ts b/packages/icons-editor/src/icons/Alert.ts index f3bc021438f..4716d776b67 100644 --- a/packages/icons-editor/src/icons/Alert.ts +++ b/packages/icons-editor/src/icons/Alert.ts @@ -19,14 +19,12 @@ export const AlertIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlertFill.ts b/packages/icons-editor/src/icons/AlertFill.ts index f4632941799..fe4f22339d2 100644 --- a/packages/icons-editor/src/icons/AlertFill.ts +++ b/packages/icons-editor/src/icons/AlertFill.ts @@ -19,14 +19,12 @@ export const AlertFillIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignArrangeHoriz.ts b/packages/icons-editor/src/icons/AlignArrangeHoriz.ts index 52860bd6f9d..d36458f0771 100644 --- a/packages/icons-editor/src/icons/AlignArrangeHoriz.ts +++ b/packages/icons-editor/src/icons/AlignArrangeHoriz.ts @@ -19,14 +19,12 @@ export const AlignArrangeHorizIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignArrangeVert.ts b/packages/icons-editor/src/icons/AlignArrangeVert.ts index a420cf79b3e..1da2f9b9d52 100644 --- a/packages/icons-editor/src/icons/AlignArrangeVert.ts +++ b/packages/icons-editor/src/icons/AlignArrangeVert.ts @@ -19,14 +19,12 @@ export const AlignArrangeVertIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignBottom.ts b/packages/icons-editor/src/icons/AlignBottom.ts index 219820e3478..c3659d79d3f 100644 --- a/packages/icons-editor/src/icons/AlignBottom.ts +++ b/packages/icons-editor/src/icons/AlignBottom.ts @@ -19,14 +19,12 @@ export const AlignBottomIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignHorizCenters.ts b/packages/icons-editor/src/icons/AlignHorizCenters.ts index 3eec4964f45..c1c8bca1e5e 100644 --- a/packages/icons-editor/src/icons/AlignHorizCenters.ts +++ b/packages/icons-editor/src/icons/AlignHorizCenters.ts @@ -19,14 +19,12 @@ export const AlignHorizCentersIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignLeft.ts b/packages/icons-editor/src/icons/AlignLeft.ts index f691636fdfa..fe9a47536b2 100644 --- a/packages/icons-editor/src/icons/AlignLeft.ts +++ b/packages/icons-editor/src/icons/AlignLeft.ts @@ -19,14 +19,12 @@ export const AlignLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignRight.ts b/packages/icons-editor/src/icons/AlignRight.ts index a352fbd1926..eddbe281af6 100644 --- a/packages/icons-editor/src/icons/AlignRight.ts +++ b/packages/icons-editor/src/icons/AlignRight.ts @@ -19,14 +19,12 @@ export const AlignRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignTop.ts b/packages/icons-editor/src/icons/AlignTop.ts index 626300f7403..5d7866023eb 100644 --- a/packages/icons-editor/src/icons/AlignTop.ts +++ b/packages/icons-editor/src/icons/AlignTop.ts @@ -19,14 +19,12 @@ export const AlignTopIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/AlignVertCenters.ts b/packages/icons-editor/src/icons/AlignVertCenters.ts index 3dd61251493..1c49e455f25 100644 --- a/packages/icons-editor/src/icons/AlignVertCenters.ts +++ b/packages/icons-editor/src/icons/AlignVertCenters.ts @@ -19,14 +19,12 @@ export const AlignVertCentersIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Animation.ts b/packages/icons-editor/src/icons/Animation.ts index 4684bc5b053..8bf1cf95170 100644 --- a/packages/icons-editor/src/icons/Animation.ts +++ b/packages/icons-editor/src/icons/Animation.ts @@ -19,7 +19,6 @@ export const AnimationIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -29,7 +28,6 @@ export const AnimationIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M16.3767 2.95001C15.0541 2.30928 13.5697 1.95001 12.0014 1.95001C10.4331 1.95001 8.94874 2.30928 7.62609 2.95001H5.99999C4.31552 2.95001 2.94999 4.31554 2.94999 6.00001V7.62913C2.31103 8.95031 1.95282 10.4326 1.95282 11.9986C1.95282 13.5646 2.31103 15.0469 2.94999 16.3681V18C2.94999 19.6845 4.31552 21.05 5.99999 21.05H7.63193C8.95311 21.689 10.4354 22.0472 12.0014 22.0472C13.5674 22.0472 15.0497 21.689 16.3709 21.05H18C19.6845 21.05 21.05 19.6845 21.05 18V16.3739C21.6907 15.0513 22.05 13.5669 22.05 11.9986C22.05 10.4303 21.6907 8.94593 21.05 7.62329V6.00001C21.05 4.31554 19.6845 2.95001 18 2.95001H16.3767ZM16.5774 3.05001H18C19.6292 3.05001 20.95 4.37077 20.95 6.00001V7.42262C19.9884 5.54604 18.454 4.01155 16.5774 3.05001ZM20.95 7.64634C19.9761 5.64767 18.3523 4.0239 16.3537 3.05001H7.64915C5.64854 4.02485 4.02356 5.65082 3.04999 7.65215V16.345C4.0245 18.3483 5.65168 19.9755 7.65495 20.95H16.3479C18.3492 19.9764 19.9752 18.3515 20.95 16.3509V7.64634ZM21.05 7.85788C21.6279 9.11862 21.95 10.521 21.95 11.9986C21.95 13.4762 21.6279 14.8786 21.05 16.1393V7.85788ZM20.95 16.5746V18C20.95 19.6293 19.6292 20.95 18 20.95H16.5719C18.451 19.9887 19.9875 18.453 20.95 16.5746ZM16.136 21.05C14.8768 21.6261 13.4766 21.9472 12.0014 21.9472C10.5262 21.9472 9.12599 21.6261 7.86685 21.05H16.136ZM7.43094 20.95H5.99999C4.37075 20.95 3.04999 19.6293 3.04999 18V16.5691C4.01229 18.45 5.55001 19.9877 7.43094 20.95ZM2.94999 16.1331C2.3739 14.874 2.05282 13.4738 2.05282 11.9986C2.05282 10.5234 2.3739 9.12319 2.94999 7.86405V16.1331ZM3.04999 7.42814V6.00001C3.04999 4.37077 4.37075 3.05001 5.99999 3.05001H7.42542C5.547 4.0125 4.01134 5.54905 3.04999 7.42814ZM7.86068 2.95001H16.1421C14.8814 2.37214 13.479 2.05001 12.0014 2.05001C10.5238 2.05001 9.12142 2.37214 7.86068 2.95001ZM17.05 12C17.05 9.21097 14.789 6.95001 12 6.95001C9.21095 6.95001 6.94999 9.21097 6.94999 12C6.94999 14.7891 9.21095 17.05 12 17.05C14.789 17.05 17.05 14.7891 17.05 12ZM12 7.05001C14.7338 7.05001 16.95 9.2662 16.95 12C16.95 14.7338 14.7338 16.95 12 16.95C9.26618 16.95 7.04999 14.7338 7.04999 12C7.04999 9.2662 9.26618 7.05001 12 7.05001Z" - fill="black" fill-opacity="0.16" /> { fill-rule="evenodd" clip-rule="evenodd" d="M7.75 12C7.75 7.99594 10.9959 4.75 15 4.75C19.0041 4.75 22.25 7.99594 22.25 12C22.25 16.0041 19.0041 19.25 15 19.25C10.9959 19.25 7.75 16.0041 7.75 12ZM15 3.25C10.1675 3.25 6.25 7.16751 6.25 12C6.25 16.8325 10.1675 20.75 15 20.75C19.8325 20.75 23.75 16.8325 23.75 12C23.75 7.16751 19.8325 3.25 15 3.25ZM1.75 12C1.75 8.95855 3.62306 6.35279 6.28141 5.27672L5.71859 3.88631C2.51328 5.18378 0.25 8.32668 0.25 12C0.25 15.6733 2.51328 18.8162 5.71859 20.1137L6.28141 18.7233C3.62306 17.6472 1.75 15.0414 1.75 12Z" - fill="#1F1F1F" /> - + - + diff --git a/packages/icons-editor/src/icons/ArrowDownSmall.ts b/packages/icons-editor/src/icons/ArrowDownSmall.ts index b2a4926827a..cd74546209c 100644 --- a/packages/icons-editor/src/icons/ArrowDownSmall.ts +++ b/packages/icons-editor/src/icons/ArrowDownSmall.ts @@ -19,14 +19,12 @@ export const ArrowDownSmallIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/ArrowLeft.ts b/packages/icons-editor/src/icons/ArrowLeft.ts index 21ce340f075..368ecbe9439 100644 --- a/packages/icons-editor/src/icons/ArrowLeft.ts +++ b/packages/icons-editor/src/icons/ArrowLeft.ts @@ -19,14 +19,12 @@ export const ArrowLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/ArrowRight.ts b/packages/icons-editor/src/icons/ArrowRight.ts index 1d1fcd09e01..2c51a040d61 100644 --- a/packages/icons-editor/src/icons/ArrowRight.ts +++ b/packages/icons-editor/src/icons/ArrowRight.ts @@ -19,14 +19,12 @@ export const ArrowRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/ArrowRightSmall.ts b/packages/icons-editor/src/icons/ArrowRightSmall.ts index 3614aef5366..30e5577b9be 100644 --- a/packages/icons-editor/src/icons/ArrowRightSmall.ts +++ b/packages/icons-editor/src/icons/ArrowRightSmall.ts @@ -19,14 +19,12 @@ export const ArrowRightSmallIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/ArrowTriangle.ts b/packages/icons-editor/src/icons/ArrowTriangle.ts index 06af5beb099..8dd2241302f 100644 --- a/packages/icons-editor/src/icons/ArrowTriangle.ts +++ b/packages/icons-editor/src/icons/ArrowTriangle.ts @@ -19,15 +19,14 @@ export const ArrowTriangleIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > - + - + diff --git a/packages/icons-editor/src/icons/Backspace.ts b/packages/icons-editor/src/icons/Backspace.ts index e5b12af78b3..424dcd67146 100644 --- a/packages/icons-editor/src/icons/Backspace.ts +++ b/packages/icons-editor/src/icons/Backspace.ts @@ -19,14 +19,12 @@ export const BackspaceIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Check.ts b/packages/icons-editor/src/icons/Check.ts index 804cf71c1a3..222d38dba76 100644 --- a/packages/icons-editor/src/icons/Check.ts +++ b/packages/icons-editor/src/icons/Check.ts @@ -19,14 +19,12 @@ export const CheckIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/CheckFill.ts b/packages/icons-editor/src/icons/CheckFill.ts index 0b26c96b4e8..c07acdef133 100644 --- a/packages/icons-editor/src/icons/CheckFill.ts +++ b/packages/icons-editor/src/icons/CheckFill.ts @@ -19,14 +19,12 @@ export const CheckFillIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Clear.ts b/packages/icons-editor/src/icons/Clear.ts index a55eeb70774..956dd3d0d1f 100644 --- a/packages/icons-editor/src/icons/Clear.ts +++ b/packages/icons-editor/src/icons/Clear.ts @@ -19,14 +19,12 @@ export const ClearIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Close.ts b/packages/icons-editor/src/icons/Close.ts index 84c7121e1ad..e9135c2c0bc 100644 --- a/packages/icons-editor/src/icons/Close.ts +++ b/packages/icons-editor/src/icons/Close.ts @@ -19,14 +19,12 @@ export const CloseIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/CloseFull.ts b/packages/icons-editor/src/icons/CloseFull.ts index 0aacff25a5b..37d417eb811 100644 --- a/packages/icons-editor/src/icons/CloseFull.ts +++ b/packages/icons-editor/src/icons/CloseFull.ts @@ -19,7 +19,6 @@ export const CloseFullIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -27,12 +26,11 @@ export const CloseFullIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M13 11.75L21 11.75V10.25L14.8107 10.25L21.5303 3.53033L20.4697 2.46967L13.75 9.18934V3L12.25 3V11C12.25 11.1989 12.329 11.3897 12.4697 11.5303C12.6103 11.671 12.8011 11.75 13 11.75ZM11 12.25L3 12.25V13.75L9.18933 13.75L2.46967 20.4697L3.53033 21.5303L10.25 14.8107L10.25 21H11.75V13C11.75 12.8011 11.671 12.6103 11.5303 12.4697C11.3897 12.329 11.1989 12.25 11 12.25Z" - fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/CloudDone.ts b/packages/icons-editor/src/icons/CloudDone.ts index 35951d99c84..76bacceab66 100644 --- a/packages/icons-editor/src/icons/CloudDone.ts +++ b/packages/icons-editor/src/icons/CloudDone.ts @@ -19,14 +19,12 @@ export const CloudDoneIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/CloudOff.ts b/packages/icons-editor/src/icons/CloudOff.ts index 445e95f224d..6ddc24227b3 100644 --- a/packages/icons-editor/src/icons/CloudOff.ts +++ b/packages/icons-editor/src/icons/CloudOff.ts @@ -19,14 +19,12 @@ export const CloudOffIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Colorpicker.ts b/packages/icons-editor/src/icons/Colorpicker.ts index ea7816430dd..6e162b9381d 100644 --- a/packages/icons-editor/src/icons/Colorpicker.ts +++ b/packages/icons-editor/src/icons/Colorpicker.ts @@ -19,14 +19,12 @@ export const ColorpickerIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Command.ts b/packages/icons-editor/src/icons/Command.ts index 874b4ae6bd6..3c45ca14fcf 100644 --- a/packages/icons-editor/src/icons/Command.ts +++ b/packages/icons-editor/src/icons/Command.ts @@ -19,14 +19,12 @@ export const CommandIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Contacts.ts b/packages/icons-editor/src/icons/Contacts.ts index 969f323de91..bd6a68d68f8 100644 --- a/packages/icons-editor/src/icons/Contacts.ts +++ b/packages/icons-editor/src/icons/Contacts.ts @@ -19,14 +19,12 @@ export const ContactsIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Container.ts b/packages/icons-editor/src/icons/Container.ts index bb187e1e595..e42c7eaebf9 100644 --- a/packages/icons-editor/src/icons/Container.ts +++ b/packages/icons-editor/src/icons/Container.ts @@ -19,14 +19,12 @@ export const ContainerIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Copy.ts b/packages/icons-editor/src/icons/Copy.ts index db4b2ff0135..5b580e2fdad 100644 --- a/packages/icons-editor/src/icons/Copy.ts +++ b/packages/icons-editor/src/icons/Copy.ts @@ -19,14 +19,12 @@ export const CopyIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Corner.ts b/packages/icons-editor/src/icons/Corner.ts index f00a7687842..223eda4c970 100644 --- a/packages/icons-editor/src/icons/Corner.ts +++ b/packages/icons-editor/src/icons/Corner.ts @@ -19,14 +19,12 @@ export const CornerIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/CornerRadiusBottomLeft.ts b/packages/icons-editor/src/icons/CornerRadiusBottomLeft.ts index 7becc96ea5e..33ff00ec0e4 100644 --- a/packages/icons-editor/src/icons/CornerRadiusBottomLeft.ts +++ b/packages/icons-editor/src/icons/CornerRadiusBottomLeft.ts @@ -19,14 +19,12 @@ export const CornerRadiusBottomLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/CornerRadiusBottomRight.ts b/packages/icons-editor/src/icons/CornerRadiusBottomRight.ts index d306cf6e3dd..cb417447e5c 100644 --- a/packages/icons-editor/src/icons/CornerRadiusBottomRight.ts +++ b/packages/icons-editor/src/icons/CornerRadiusBottomRight.ts @@ -19,14 +19,12 @@ export const CornerRadiusBottomRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/CornerRadiusTopLeft.ts b/packages/icons-editor/src/icons/CornerRadiusTopLeft.ts index c163a761682..e510d2eaeb8 100644 --- a/packages/icons-editor/src/icons/CornerRadiusTopLeft.ts +++ b/packages/icons-editor/src/icons/CornerRadiusTopLeft.ts @@ -19,14 +19,12 @@ export const CornerRadiusTopLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/CornerRadiusTopRight.ts b/packages/icons-editor/src/icons/CornerRadiusTopRight.ts index 16e46f4055d..adf7647db78 100644 --- a/packages/icons-editor/src/icons/CornerRadiusTopRight.ts +++ b/packages/icons-editor/src/icons/CornerRadiusTopRight.ts @@ -19,14 +19,12 @@ export const CornerRadiusTopRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Crop.ts b/packages/icons-editor/src/icons/Crop.ts index 47fe3203806..78f6aa1d914 100644 --- a/packages/icons-editor/src/icons/Crop.ts +++ b/packages/icons-editor/src/icons/Crop.ts @@ -19,14 +19,12 @@ export const CropIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/DataBarchart.ts b/packages/icons-editor/src/icons/DataBarchart.ts index a79074058db..b9cece48ab8 100644 --- a/packages/icons-editor/src/icons/DataBarchart.ts +++ b/packages/icons-editor/src/icons/DataBarchart.ts @@ -19,14 +19,12 @@ export const DataBarchartIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Delete.ts b/packages/icons-editor/src/icons/Delete.ts index b4758843f2b..90b5c57ac61 100644 --- a/packages/icons-editor/src/icons/Delete.ts +++ b/packages/icons-editor/src/icons/Delete.ts @@ -19,18 +19,15 @@ export const DeleteIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Desktop.ts b/packages/icons-editor/src/icons/Desktop.ts index 489bf30493b..88510ef9987 100644 --- a/packages/icons-editor/src/icons/Desktop.ts +++ b/packages/icons-editor/src/icons/Desktop.ts @@ -19,14 +19,12 @@ export const DesktopIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/DirectionCenter.ts b/packages/icons-editor/src/icons/DirectionCenter.ts index 6c688d28a81..180fabd022c 100644 --- a/packages/icons-editor/src/icons/DirectionCenter.ts +++ b/packages/icons-editor/src/icons/DirectionCenter.ts @@ -19,14 +19,12 @@ export const DirectionCenterIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/DirectionDown.ts b/packages/icons-editor/src/icons/DirectionDown.ts index 4289b60fdc4..952d15d8e65 100644 --- a/packages/icons-editor/src/icons/DirectionDown.ts +++ b/packages/icons-editor/src/icons/DirectionDown.ts @@ -19,14 +19,12 @@ export const DirectionDownIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/DirectionLeft.ts b/packages/icons-editor/src/icons/DirectionLeft.ts index 6f90b13f6af..138ec3ad76e 100644 --- a/packages/icons-editor/src/icons/DirectionLeft.ts +++ b/packages/icons-editor/src/icons/DirectionLeft.ts @@ -19,14 +19,12 @@ export const DirectionLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/DirectionRight.ts b/packages/icons-editor/src/icons/DirectionRight.ts index 42dabeafa74..5e455c4ad95 100644 --- a/packages/icons-editor/src/icons/DirectionRight.ts +++ b/packages/icons-editor/src/icons/DirectionRight.ts @@ -19,14 +19,12 @@ export const DirectionRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/DirectionUp.ts b/packages/icons-editor/src/icons/DirectionUp.ts index 49fc91dd71d..6fee7924fdb 100644 --- a/packages/icons-editor/src/icons/DirectionUp.ts +++ b/packages/icons-editor/src/icons/DirectionUp.ts @@ -19,14 +19,12 @@ export const DirectionUpIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Display.ts b/packages/icons-editor/src/icons/Display.ts index b8e58aae59a..642e49826d5 100644 --- a/packages/icons-editor/src/icons/Display.ts +++ b/packages/icons-editor/src/icons/Display.ts @@ -19,15 +19,14 @@ export const DisplayIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > - + - + diff --git a/packages/icons-editor/src/icons/Done.ts b/packages/icons-editor/src/icons/Done.ts index dec4f950812..62b4273071c 100644 --- a/packages/icons-editor/src/icons/Done.ts +++ b/packages/icons-editor/src/icons/Done.ts @@ -19,14 +19,12 @@ export const DoneIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/DragHandle.ts b/packages/icons-editor/src/icons/DragHandle.ts index 10b5d08e078..bac1284a810 100644 --- a/packages/icons-editor/src/icons/DragHandle.ts +++ b/packages/icons-editor/src/icons/DragHandle.ts @@ -19,7 +19,6 @@ export const DragHandleIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -27,12 +26,11 @@ export const DragHandleIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M13.5 7C13.5 7.82843 14.1716 8.5 15 8.5C15.8284 8.5 16.5 7.82843 16.5 7C16.5 6.17157 15.8284 5.5 15 5.5C14.1716 5.5 13.5 6.17157 13.5 7ZM9 18.5C8.17157 18.5 7.5 17.8284 7.5 17C7.5 16.1716 8.17157 15.5 9 15.5C9.82843 15.5 10.5 16.1716 10.5 17C10.5 17.8284 9.82843 18.5 9 18.5ZM7.5 7C7.5 7.82843 8.17157 8.5 9 8.5C9.82843 8.5 10.5 7.82843 10.5 7C10.5 6.17157 9.82843 5.5 9 5.5C8.17157 5.5 7.5 6.17157 7.5 7ZM7.5 12C7.5 12.8284 8.17157 13.5 9 13.5C9.82843 13.5 10.5 12.8284 10.5 12C10.5 11.1716 9.82843 10.5 9 10.5C8.17157 10.5 7.5 11.1716 7.5 12ZM15 13.5C14.1716 13.5 13.5 12.8284 13.5 12C13.5 11.1716 14.1716 10.5 15 10.5C15.8284 10.5 16.5 11.1716 16.5 12C16.5 12.8284 15.8284 13.5 15 13.5ZM13.5 17C13.5 17.8284 14.1716 18.5 15 18.5C15.8284 18.5 16.5 17.8284 16.5 17C16.5 16.1716 15.8284 15.5 15 15.5C14.1716 15.5 13.5 16.1716 13.5 17Z" - fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/Earth.ts b/packages/icons-editor/src/icons/Earth.ts index 397c5387784..49acc23047f 100644 --- a/packages/icons-editor/src/icons/Earth.ts +++ b/packages/icons-editor/src/icons/Earth.ts @@ -19,14 +19,12 @@ export const EarthIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Easeincubic.ts b/packages/icons-editor/src/icons/Easeincubic.ts index 7c6acae20bb..1f938816831 100644 --- a/packages/icons-editor/src/icons/Easeincubic.ts +++ b/packages/icons-editor/src/icons/Easeincubic.ts @@ -19,14 +19,12 @@ export const EaseinCubicIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Easeinoutcubic.ts b/packages/icons-editor/src/icons/Easeinoutcubic.ts index d6194b41e08..3ca8c10d552 100644 --- a/packages/icons-editor/src/icons/Easeinoutcubic.ts +++ b/packages/icons-editor/src/icons/Easeinoutcubic.ts @@ -19,14 +19,12 @@ export const EaseinoutCubicIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Easeinquad.ts b/packages/icons-editor/src/icons/Easeinquad.ts index bbb4246ebe6..102ac34a62e 100644 --- a/packages/icons-editor/src/icons/Easeinquad.ts +++ b/packages/icons-editor/src/icons/Easeinquad.ts @@ -19,14 +19,12 @@ export const EaseinQuadIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Easeoutback.ts b/packages/icons-editor/src/icons/Easeoutback.ts index 428398c19ae..824c1737b16 100644 --- a/packages/icons-editor/src/icons/Easeoutback.ts +++ b/packages/icons-editor/src/icons/Easeoutback.ts @@ -19,14 +19,12 @@ export const EaseoutBackIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Easeoutbounce.ts b/packages/icons-editor/src/icons/Easeoutbounce.ts index 8db83e18ada..55de20a02f6 100644 --- a/packages/icons-editor/src/icons/Easeoutbounce.ts +++ b/packages/icons-editor/src/icons/Easeoutbounce.ts @@ -19,12 +19,10 @@ export const EaseoutBounceIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Easeoutcubic.ts b/packages/icons-editor/src/icons/Easeoutcubic.ts index 7304d29b35c..422ea32b626 100644 --- a/packages/icons-editor/src/icons/Easeoutcubic.ts +++ b/packages/icons-editor/src/icons/Easeoutcubic.ts @@ -19,14 +19,12 @@ export const EaseoutCubicIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Easeoutelastic.ts b/packages/icons-editor/src/icons/Easeoutelastic.ts index f4cdd6781ef..c4f9d698acc 100644 --- a/packages/icons-editor/src/icons/Easeoutelastic.ts +++ b/packages/icons-editor/src/icons/Easeoutelastic.ts @@ -19,14 +19,12 @@ export const EaseoutElasticIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Easeoutquad.ts b/packages/icons-editor/src/icons/Easeoutquad.ts index 23693dafb97..3b33fa12f99 100644 --- a/packages/icons-editor/src/icons/Easeoutquad.ts +++ b/packages/icons-editor/src/icons/Easeoutquad.ts @@ -19,14 +19,12 @@ export const EaseoutQuadIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Edit.ts b/packages/icons-editor/src/icons/Edit.ts index 44a702742ec..ba6d7db7b5f 100644 --- a/packages/icons-editor/src/icons/Edit.ts +++ b/packages/icons-editor/src/icons/Edit.ts @@ -19,7 +19,6 @@ export const EditIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -27,12 +26,11 @@ export const EditIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M16.3497 2.9948C17.2284 2.11612 18.653 2.11612 19.5317 2.9948L20.9459 4.40901C21.8246 5.28769 21.8246 6.71231 20.9459 7.59099L7.08051 21.4564C6.96556 21.5714 6.81637 21.6459 6.65541 21.6687L2.60525 22.2426C2.37392 22.2754 2.14054 22.1985 1.974 22.0346C1.80746 21.8707 1.7268 21.6386 1.75583 21.4068L2.27046 17.2974C2.29118 17.1319 2.36643 16.9781 2.48432 16.8602L16.3497 2.9948ZM18.0104 8.40518L15.5356 5.93031L3.72687 17.739L3.36611 20.6198L6.19696 20.2186L18.0104 8.40518Z" - fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/Effect.ts b/packages/icons-editor/src/icons/Effect.ts index 53841c83e18..de0d4c96e53 100644 --- a/packages/icons-editor/src/icons/Effect.ts +++ b/packages/icons-editor/src/icons/Effect.ts @@ -19,16 +19,13 @@ export const EffectIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Event.ts b/packages/icons-editor/src/icons/Event.ts index 2d425ad2468..8e03a7f6e07 100644 --- a/packages/icons-editor/src/icons/Event.ts +++ b/packages/icons-editor/src/icons/Event.ts @@ -19,7 +19,6 @@ export const EventIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -27,12 +26,11 @@ export const EventIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M20.1872 3.81281C20.3881 4.01368 20.4582 4.31081 20.3684 4.58031L14.7115 21.5509C14.6094 21.8571 14.3228 22.0637 14 22.0637C13.6772 22.0637 13.3906 21.8571 13.2885 21.5509L10.5786 13.4213L2.44913 10.7115C2.14287 10.6094 1.9363 10.3228 1.9363 10C1.9363 9.67718 2.14287 9.39057 2.44913 9.28849L19.4197 3.63162C19.6892 3.54179 19.9863 3.61193 20.1872 3.81281ZM5.05801 10L11.4087 12.1169C11.6327 12.1916 11.8084 12.3673 11.8831 12.5912L14 18.942L18.471 5.52899L5.05801 10Z" - fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/Eye.ts b/packages/icons-editor/src/icons/Eye.ts index ef17fd1263f..7e1099e3623 100644 --- a/packages/icons-editor/src/icons/Eye.ts +++ b/packages/icons-editor/src/icons/Eye.ts @@ -19,14 +19,12 @@ export const EyeIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/EyeDisplay.ts b/packages/icons-editor/src/icons/EyeDisplay.ts index 8c69b8b85a2..2b8b5d623fc 100644 --- a/packages/icons-editor/src/icons/EyeDisplay.ts +++ b/packages/icons-editor/src/icons/EyeDisplay.ts @@ -19,14 +19,12 @@ export const EyeDisplayIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/EyeOff.ts b/packages/icons-editor/src/icons/EyeOff.ts index 1468fca4a3d..ef78026efaa 100644 --- a/packages/icons-editor/src/icons/EyeOff.ts +++ b/packages/icons-editor/src/icons/EyeOff.ts @@ -19,14 +19,12 @@ export const EyeOffIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Figma.ts b/packages/icons-editor/src/icons/Figma.ts index f42e0b27ea7..18f3ecad639 100644 --- a/packages/icons-editor/src/icons/Figma.ts +++ b/packages/icons-editor/src/icons/Figma.ts @@ -19,14 +19,12 @@ export const FigmaIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FigmaStatic.ts b/packages/icons-editor/src/icons/FigmaStatic.ts index 0ec17d84160..173c0103fff 100644 --- a/packages/icons-editor/src/icons/FigmaStatic.ts +++ b/packages/icons-editor/src/icons/FigmaStatic.ts @@ -19,39 +19,28 @@ export const FigmaStaticIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > - + diff --git a/packages/icons-editor/src/icons/FileFolder.ts b/packages/icons-editor/src/icons/FileFolder.ts index 6e9ea246d4e..ed7386dfc24 100644 --- a/packages/icons-editor/src/icons/FileFolder.ts +++ b/packages/icons-editor/src/icons/FileFolder.ts @@ -19,14 +19,12 @@ export const FileFolderIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FileOutline.ts b/packages/icons-editor/src/icons/FileOutline.ts index b2b6d9642f5..f6040922773 100644 --- a/packages/icons-editor/src/icons/FileOutline.ts +++ b/packages/icons-editor/src/icons/FileOutline.ts @@ -19,12 +19,10 @@ export const FileOutlineIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Fixed.ts b/packages/icons-editor/src/icons/Fixed.ts index 99ba096ff14..eda339313ab 100644 --- a/packages/icons-editor/src/icons/Fixed.ts +++ b/packages/icons-editor/src/icons/Fixed.ts @@ -19,7 +19,6 @@ export const FixedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -27,12 +26,11 @@ export const FixedIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M14.616 3.67827C15.5113 3.02993 16.745 3.128 17.5266 3.90964L19.9604 6.34339C20.742 7.12504 20.8401 8.35871 20.1918 9.25403L13.8924 17.9531L15.5615 19.6222L14.5009 20.6829L9.37436 15.5563L3.18718 21.7435L2.12652 20.6829L8.3137 14.4957L3.18718 9.36916L4.24784 8.3085L5.91693 9.9776L14.616 3.67827ZM6.99108 11.0517L12.8183 16.879L18.164 9.49676L14.3733 5.70602L6.99108 11.0517Z" - fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/Focus.ts b/packages/icons-editor/src/icons/Focus.ts index e57659a8e76..81d6377c880 100644 --- a/packages/icons-editor/src/icons/Focus.ts +++ b/packages/icons-editor/src/icons/Focus.ts @@ -19,14 +19,12 @@ export const FocusIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatAlignBottom.ts b/packages/icons-editor/src/icons/FormatAlignBottom.ts index 93518b8b813..16c9152dfd8 100644 --- a/packages/icons-editor/src/icons/FormatAlignBottom.ts +++ b/packages/icons-editor/src/icons/FormatAlignBottom.ts @@ -19,14 +19,12 @@ export const FormatAlignBottomIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatAlignMedium.ts b/packages/icons-editor/src/icons/FormatAlignMedium.ts index e1dd0c2973b..958988ababa 100644 --- a/packages/icons-editor/src/icons/FormatAlignMedium.ts +++ b/packages/icons-editor/src/icons/FormatAlignMedium.ts @@ -19,14 +19,12 @@ export const FormatAlignMediumIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatAlignTop.ts b/packages/icons-editor/src/icons/FormatAlignTop.ts index 514a86a6871..15deeeb04d6 100644 --- a/packages/icons-editor/src/icons/FormatAlignTop.ts +++ b/packages/icons-editor/src/icons/FormatAlignTop.ts @@ -19,14 +19,12 @@ export const FormatAlignTopIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatCenter.ts b/packages/icons-editor/src/icons/FormatCenter.ts index 2c735b62b91..e2a9dc64dda 100644 --- a/packages/icons-editor/src/icons/FormatCenter.ts +++ b/packages/icons-editor/src/icons/FormatCenter.ts @@ -19,14 +19,12 @@ export const FormatCenterIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatIndentDecrease.ts b/packages/icons-editor/src/icons/FormatIndentDecrease.ts index 446677af29e..9ec329a5d43 100644 --- a/packages/icons-editor/src/icons/FormatIndentDecrease.ts +++ b/packages/icons-editor/src/icons/FormatIndentDecrease.ts @@ -19,14 +19,12 @@ export const FormatIndentDecreaseIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatIndentIncrease.ts b/packages/icons-editor/src/icons/FormatIndentIncrease.ts index 71a803e5d53..e25507b5f33 100644 --- a/packages/icons-editor/src/icons/FormatIndentIncrease.ts +++ b/packages/icons-editor/src/icons/FormatIndentIncrease.ts @@ -19,7 +19,6 @@ export const FormatIndentIncreaseIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -27,12 +26,11 @@ export const FormatIndentIncreaseIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M4.31066 3.96973L8.31066 7.96973C8.60355 8.26262 8.60355 8.73749 8.31066 9.03039L4.31066 13.0304L3.25 11.9697L6.71967 8.50006L3.25 5.03039L4.31066 3.96973ZM12 5.75006H21V4.25006H12V5.75006ZM12 12.7501H21V11.2501H12V12.7501ZM21 18.2501V19.7501H3V18.2501H21Z" - fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/FormatJustified.ts b/packages/icons-editor/src/icons/FormatJustified.ts index ce1e2685e04..011bbe7eb11 100644 --- a/packages/icons-editor/src/icons/FormatJustified.ts +++ b/packages/icons-editor/src/icons/FormatJustified.ts @@ -19,14 +19,12 @@ export const FormatJustifiedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatLeft.ts b/packages/icons-editor/src/icons/FormatLeft.ts index f419c35e030..52eb13c018b 100644 --- a/packages/icons-editor/src/icons/FormatLeft.ts +++ b/packages/icons-editor/src/icons/FormatLeft.ts @@ -19,14 +19,12 @@ export const FormatLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatListBulleted.ts b/packages/icons-editor/src/icons/FormatListBulleted.ts index 9c418a23dbb..1a802be1840 100644 --- a/packages/icons-editor/src/icons/FormatListBulleted.ts +++ b/packages/icons-editor/src/icons/FormatListBulleted.ts @@ -19,14 +19,12 @@ export const FormatListBulletedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatListNumbered.ts b/packages/icons-editor/src/icons/FormatListNumbered.ts index aa66e94a766..8782aab3498 100644 --- a/packages/icons-editor/src/icons/FormatListNumbered.ts +++ b/packages/icons-editor/src/icons/FormatListNumbered.ts @@ -19,18 +19,15 @@ export const FormatListNumberedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatPacingLines.ts b/packages/icons-editor/src/icons/FormatPacingLines.ts index ef3c2fea583..5873e15bf3b 100644 --- a/packages/icons-editor/src/icons/FormatPacingLines.ts +++ b/packages/icons-editor/src/icons/FormatPacingLines.ts @@ -19,14 +19,12 @@ export const FormatPacingLinesIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatRight.ts b/packages/icons-editor/src/icons/FormatRight.ts index 4ca86ab57f2..5c61c5ceefe 100644 --- a/packages/icons-editor/src/icons/FormatRight.ts +++ b/packages/icons-editor/src/icons/FormatRight.ts @@ -19,14 +19,12 @@ export const FormatRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/FormatSpacingLetter.ts b/packages/icons-editor/src/icons/FormatSpacingLetter.ts index 1d2fb700636..1fb17b741c7 100644 --- a/packages/icons-editor/src/icons/FormatSpacingLetter.ts +++ b/packages/icons-editor/src/icons/FormatSpacingLetter.ts @@ -19,14 +19,12 @@ export const FormatSpacingLetterIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Global.ts b/packages/icons-editor/src/icons/Global.ts index bf34ad7d833..97746faff85 100644 --- a/packages/icons-editor/src/icons/Global.ts +++ b/packages/icons-editor/src/icons/Global.ts @@ -19,14 +19,12 @@ export const GlobalIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/GridOutline.ts b/packages/icons-editor/src/icons/GridOutline.ts index fe7bbf731d9..9e7cc6f127d 100644 --- a/packages/icons-editor/src/icons/GridOutline.ts +++ b/packages/icons-editor/src/icons/GridOutline.ts @@ -19,12 +19,10 @@ export const GridOutlineIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/HeightFill.ts b/packages/icons-editor/src/icons/HeightFill.ts index cba7e8aab7b..efb892dadf7 100644 --- a/packages/icons-editor/src/icons/HeightFill.ts +++ b/packages/icons-editor/src/icons/HeightFill.ts @@ -19,14 +19,12 @@ export const HeightFillIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/HeightFixed.ts b/packages/icons-editor/src/icons/HeightFixed.ts index 3f9f3fb2fce..f2174bac90a 100644 --- a/packages/icons-editor/src/icons/HeightFixed.ts +++ b/packages/icons-editor/src/icons/HeightFixed.ts @@ -19,14 +19,12 @@ export const HeightFixedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/HeightHug.ts b/packages/icons-editor/src/icons/HeightHug.ts index eab6de2b720..a8e7f41d263 100644 --- a/packages/icons-editor/src/icons/HeightHug.ts +++ b/packages/icons-editor/src/icons/HeightHug.ts @@ -19,14 +19,12 @@ export const HeightHugIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Help.ts b/packages/icons-editor/src/icons/Help.ts index aacd080596a..788d99cbae8 100644 --- a/packages/icons-editor/src/icons/Help.ts +++ b/packages/icons-editor/src/icons/Help.ts @@ -19,14 +19,12 @@ export const HelpIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/HelpFill.ts b/packages/icons-editor/src/icons/HelpFill.ts index 93f88ac5db2..80e41e38525 100644 --- a/packages/icons-editor/src/icons/HelpFill.ts +++ b/packages/icons-editor/src/icons/HelpFill.ts @@ -19,14 +19,12 @@ export const HelpFillIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Home.ts b/packages/icons-editor/src/icons/Home.ts index 39b0b7a9e61..e2a58a8aebf 100644 --- a/packages/icons-editor/src/icons/Home.ts +++ b/packages/icons-editor/src/icons/Home.ts @@ -19,14 +19,12 @@ export const HomeIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/HorizBottom.ts b/packages/icons-editor/src/icons/HorizBottom.ts index 54215ea9a2f..1a77e131802 100644 --- a/packages/icons-editor/src/icons/HorizBottom.ts +++ b/packages/icons-editor/src/icons/HorizBottom.ts @@ -19,14 +19,12 @@ export const HorizBottomIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/HorizCenters.ts b/packages/icons-editor/src/icons/HorizCenters.ts index f4f9da4e010..b5e2ec000bc 100644 --- a/packages/icons-editor/src/icons/HorizCenters.ts +++ b/packages/icons-editor/src/icons/HorizCenters.ts @@ -19,14 +19,12 @@ export const HorizCentersIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/HorizTop.ts b/packages/icons-editor/src/icons/HorizTop.ts index 7e6a0880e42..51d0859fcc7 100644 --- a/packages/icons-editor/src/icons/HorizTop.ts +++ b/packages/icons-editor/src/icons/HorizTop.ts @@ -19,14 +19,12 @@ export const HorizTopIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Image.ts b/packages/icons-editor/src/icons/Image.ts index b52705bb91d..89a7696e2ee 100644 --- a/packages/icons-editor/src/icons/Image.ts +++ b/packages/icons-editor/src/icons/Image.ts @@ -19,14 +19,12 @@ export const ImageIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Import.ts b/packages/icons-editor/src/icons/Import.ts index 063492b7462..cbcae238b87 100644 --- a/packages/icons-editor/src/icons/Import.ts +++ b/packages/icons-editor/src/icons/Import.ts @@ -19,14 +19,12 @@ export const ImportIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Info.ts b/packages/icons-editor/src/icons/Info.ts index 0f7c33ddddd..82a4a3b10ae 100644 --- a/packages/icons-editor/src/icons/Info.ts +++ b/packages/icons-editor/src/icons/Info.ts @@ -19,14 +19,12 @@ export const InfoIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/InfoFill.ts b/packages/icons-editor/src/icons/InfoFill.ts index 50300c6d595..2ecca304eae 100644 --- a/packages/icons-editor/src/icons/InfoFill.ts +++ b/packages/icons-editor/src/icons/InfoFill.ts @@ -19,14 +19,12 @@ export const InfoFillIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Inspire.ts b/packages/icons-editor/src/icons/Inspire.ts index 4afc3b3f200..e6842c58ec5 100644 --- a/packages/icons-editor/src/icons/Inspire.ts +++ b/packages/icons-editor/src/icons/Inspire.ts @@ -19,14 +19,12 @@ export const InspireIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelC.ts b/packages/icons-editor/src/icons/LabelC.ts index dddf6e2de4a..991ce332436 100644 --- a/packages/icons-editor/src/icons/LabelC.ts +++ b/packages/icons-editor/src/icons/LabelC.ts @@ -19,12 +19,10 @@ export const LabelCIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelClosebracket.ts b/packages/icons-editor/src/icons/LabelClosebracket.ts index 25f44012f3e..eda77cb921e 100644 --- a/packages/icons-editor/src/icons/LabelClosebracket.ts +++ b/packages/icons-editor/src/icons/LabelClosebracket.ts @@ -19,12 +19,10 @@ export const LabelClosebracketIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelD.ts b/packages/icons-editor/src/icons/LabelD.ts index f05212f0fbb..93541fbfc23 100644 --- a/packages/icons-editor/src/icons/LabelD.ts +++ b/packages/icons-editor/src/icons/LabelD.ts @@ -19,12 +19,10 @@ export const LabelDIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelG.ts b/packages/icons-editor/src/icons/LabelG.ts index bbb4958c12d..0c92aa8c877 100644 --- a/packages/icons-editor/src/icons/LabelG.ts +++ b/packages/icons-editor/src/icons/LabelG.ts @@ -19,12 +19,10 @@ export const LabelGIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelOpenbracket.ts b/packages/icons-editor/src/icons/LabelOpenbracket.ts index 72d153723e9..66c085f231a 100644 --- a/packages/icons-editor/src/icons/LabelOpenbracket.ts +++ b/packages/icons-editor/src/icons/LabelOpenbracket.ts @@ -19,12 +19,10 @@ export const LabelOpenbracketIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelV.ts b/packages/icons-editor/src/icons/LabelV.ts index 39796ba10da..bd83c207e57 100644 --- a/packages/icons-editor/src/icons/LabelV.ts +++ b/packages/icons-editor/src/icons/LabelV.ts @@ -19,12 +19,10 @@ export const LabelVIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelX.ts b/packages/icons-editor/src/icons/LabelX.ts index 961fbf405ff..ae7a8ba12bb 100644 --- a/packages/icons-editor/src/icons/LabelX.ts +++ b/packages/icons-editor/src/icons/LabelX.ts @@ -19,12 +19,10 @@ export const LabelXIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelY.ts b/packages/icons-editor/src/icons/LabelY.ts index 461e45dc28e..b8d9f1c10ee 100644 --- a/packages/icons-editor/src/icons/LabelY.ts +++ b/packages/icons-editor/src/icons/LabelY.ts @@ -19,12 +19,10 @@ export const LabelYIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LabelZ.ts b/packages/icons-editor/src/icons/LabelZ.ts index 7eec2d3590f..07c1c2ca1e2 100644 --- a/packages/icons-editor/src/icons/LabelZ.ts +++ b/packages/icons-editor/src/icons/LabelZ.ts @@ -19,12 +19,10 @@ export const LabelZIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Layers.ts b/packages/icons-editor/src/icons/Layers.ts index 86670d29c6a..49c1e950e47 100644 --- a/packages/icons-editor/src/icons/Layers.ts +++ b/packages/icons-editor/src/icons/Layers.ts @@ -19,14 +19,12 @@ export const LayersIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LayoutHorz.ts b/packages/icons-editor/src/icons/LayoutHorz.ts index bf9ca2763d0..29f16efaf07 100644 --- a/packages/icons-editor/src/icons/LayoutHorz.ts +++ b/packages/icons-editor/src/icons/LayoutHorz.ts @@ -19,14 +19,12 @@ export const LayoutHorzIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LayoutPageturn.ts b/packages/icons-editor/src/icons/LayoutPageturn.ts index 98613d91309..6160a81d519 100644 --- a/packages/icons-editor/src/icons/LayoutPageturn.ts +++ b/packages/icons-editor/src/icons/LayoutPageturn.ts @@ -19,14 +19,12 @@ export const LayoutPageturnIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LayoutSliding.ts b/packages/icons-editor/src/icons/LayoutSliding.ts index d5b2a8aa891..64b7b8abc60 100644 --- a/packages/icons-editor/src/icons/LayoutSliding.ts +++ b/packages/icons-editor/src/icons/LayoutSliding.ts @@ -19,14 +19,12 @@ export const LayoutSlidingIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LayoutVert.ts b/packages/icons-editor/src/icons/LayoutVert.ts index dc426394eb1..5a65e5db4a7 100644 --- a/packages/icons-editor/src/icons/LayoutVert.ts +++ b/packages/icons-editor/src/icons/LayoutVert.ts @@ -19,14 +19,12 @@ export const LayoutVertIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/LayoutWrap.ts b/packages/icons-editor/src/icons/LayoutWrap.ts index 026ec5b96df..e6f40709df7 100644 --- a/packages/icons-editor/src/icons/LayoutWrap.ts +++ b/packages/icons-editor/src/icons/LayoutWrap.ts @@ -19,14 +19,12 @@ export const LayoutWrapIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Linear.ts b/packages/icons-editor/src/icons/Linear.ts index 9ef97fcdf77..6fa3e54a3be 100644 --- a/packages/icons-editor/src/icons/Linear.ts +++ b/packages/icons-editor/src/icons/Linear.ts @@ -19,14 +19,12 @@ export const LinearIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Link.ts b/packages/icons-editor/src/icons/Link.ts index 0f361553678..008fff8a27e 100644 --- a/packages/icons-editor/src/icons/Link.ts +++ b/packages/icons-editor/src/icons/Link.ts @@ -19,14 +19,12 @@ export const LinkIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Loading.ts b/packages/icons-editor/src/icons/Loading.ts index e19375935a0..6c49d78be2a 100644 --- a/packages/icons-editor/src/icons/Loading.ts +++ b/packages/icons-editor/src/icons/Loading.ts @@ -19,7 +19,6 @@ export const LoadingIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -27,7 +26,6 @@ export const LoadingIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21ZM19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 8.13401 8.13401 5 12 5C15.866 5 19 8.13401 19 12Z" - fill="url(#paint0_angular_919_758)" /> @@ -46,7 +44,6 @@ export const LoadingIcon = (): string | TemplateResult => { diff --git a/packages/icons-editor/src/icons/LoadingWhite.ts b/packages/icons-editor/src/icons/LoadingWhite.ts index 2400bde5141..8824567b1bc 100644 --- a/packages/icons-editor/src/icons/LoadingWhite.ts +++ b/packages/icons-editor/src/icons/LoadingWhite.ts @@ -19,7 +19,6 @@ export const LoadingWhiteIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -27,7 +26,6 @@ export const LoadingWhiteIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21ZM19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 8.13401 8.13401 5 12 5C15.866 5 19 8.13401 19 12Z" - fill="url(#paint0_angular_922_764)" /> @@ -46,7 +44,6 @@ export const LoadingWhiteIcon = (): string | TemplateResult => { diff --git a/packages/icons-editor/src/icons/Locate.ts b/packages/icons-editor/src/icons/Locate.ts index 121093c1182..81d61161229 100644 --- a/packages/icons-editor/src/icons/Locate.ts +++ b/packages/icons-editor/src/icons/Locate.ts @@ -19,14 +19,12 @@ export const LocateIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Locked.ts b/packages/icons-editor/src/icons/Locked.ts index f480d45611b..22bae2d1b53 100644 --- a/packages/icons-editor/src/icons/Locked.ts +++ b/packages/icons-editor/src/icons/Locked.ts @@ -19,14 +19,12 @@ export const LockedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Materiel.ts b/packages/icons-editor/src/icons/Materiel.ts index 64a56684fe4..e31913b29b2 100644 --- a/packages/icons-editor/src/icons/Materiel.ts +++ b/packages/icons-editor/src/icons/Materiel.ts @@ -19,7 +19,6 @@ export const MaterielIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -27,12 +26,11 @@ export const MaterielIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M3.75 6C3.75 4.75736 4.75736 3.75 6 3.75L9 3.75L15 3.75L18 3.75C19.2426 3.75 20.25 4.75736 20.25 6L20.25 11.25L3.75 11.25L3.75 6ZM3.75 12.75L3.75 18C3.75 19.2426 4.75736 20.25 6 20.25L9 20.25L15 20.25L18 20.25C19.2426 20.25 20.25 19.2426 20.25 18L20.25 12.75L3.75 12.75ZM6 2.25C3.92893 2.25 2.25 3.92893 2.25 6L2.25 18C2.25 20.0711 3.92893 21.75 6 21.75L9 21.75L15 21.75L18 21.75C20.0711 21.75 21.75 20.0711 21.75 18L21.75 6C21.75 3.92893 20.0711 2.25 18 2.25L15 2.25L9 2.25L6 2.25ZM8.5 7.5C8.5 8.19036 7.94036 8.75 7.25 8.75C6.55964 8.75 6 8.19036 6 7.5C6 6.80964 6.55964 6.25 7.25 6.25C7.94036 6.25 8.5 6.80964 8.5 7.5ZM7.25 17.75C7.94036 17.75 8.5 17.1904 8.5 16.5C8.5 15.8096 7.94036 15.25 7.25 15.25C6.55964 15.25 6 15.8096 6 16.5C6 17.1904 6.55964 17.75 7.25 17.75Z" - fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/Menu.ts b/packages/icons-editor/src/icons/Menu.ts index 6c1f09e4255..984945194c2 100644 --- a/packages/icons-editor/src/icons/Menu.ts +++ b/packages/icons-editor/src/icons/Menu.ts @@ -19,14 +19,12 @@ export const MenuIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/MoreHoriz.ts b/packages/icons-editor/src/icons/MoreHoriz.ts index 365230bb1fb..260fea46548 100644 --- a/packages/icons-editor/src/icons/MoreHoriz.ts +++ b/packages/icons-editor/src/icons/MoreHoriz.ts @@ -19,7 +19,6 @@ export const MoreHorizIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -27,12 +26,11 @@ export const MoreHorizIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M6.5 12C6.5 12.8284 5.82843 13.5 5 13.5C4.17157 13.5 3.5 12.8284 3.5 12C3.5 11.1716 4.17157 10.5 5 10.5C5.82843 10.5 6.5 11.1716 6.5 12ZM13.5 12C13.5 12.8284 12.8284 13.5 12 13.5C11.1716 13.5 10.5 12.8284 10.5 12C10.5 11.1716 11.1716 10.5 12 10.5C12.8284 10.5 13.5 11.1716 13.5 12ZM19 13.5C19.8284 13.5 20.5 12.8284 20.5 12C20.5 11.1716 19.8284 10.5 19 10.5C18.1716 10.5 17.5 11.1716 17.5 12C17.5 12.8284 18.1716 13.5 19 13.5Z" - fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/MouseClick.ts b/packages/icons-editor/src/icons/MouseClick.ts index 60fcd34d43a..49551204f21 100644 --- a/packages/icons-editor/src/icons/MouseClick.ts +++ b/packages/icons-editor/src/icons/MouseClick.ts @@ -19,14 +19,12 @@ export const MouseClickIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/MouseHover.ts b/packages/icons-editor/src/icons/MouseHover.ts index 742d1b371ce..a25067cd681 100644 --- a/packages/icons-editor/src/icons/MouseHover.ts +++ b/packages/icons-editor/src/icons/MouseHover.ts @@ -19,14 +19,12 @@ export const MouseHoverIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Move.ts b/packages/icons-editor/src/icons/Move.ts index fdf2fa42585..48c01ec57d6 100644 --- a/packages/icons-editor/src/icons/Move.ts +++ b/packages/icons-editor/src/icons/Move.ts @@ -19,14 +19,12 @@ export const MoveIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/None.ts b/packages/icons-editor/src/icons/None.ts index ecd114bff47..5568c2e2874 100644 --- a/packages/icons-editor/src/icons/None.ts +++ b/packages/icons-editor/src/icons/None.ts @@ -19,14 +19,12 @@ export const NoneIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/OpenFull.ts b/packages/icons-editor/src/icons/OpenFull.ts index 1bfd4e7dc8a..3ccd40ce53a 100644 --- a/packages/icons-editor/src/icons/OpenFull.ts +++ b/packages/icons-editor/src/icons/OpenFull.ts @@ -19,7 +19,6 @@ export const OpenFullIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -27,12 +26,11 @@ export const OpenFullIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M5.81067 19.25L12 19.25L12 20.75L4.00001 20.75C3.80109 20.75 3.61033 20.671 3.46968 20.5303C3.32902 20.3897 3.25 20.1989 3.25 20L3.25 12L4.75 12L4.75 18.1894L18.1893 4.75001L12 4.75L12 3.25L20 3.25001C20.4142 3.25001 20.75 3.5858 20.75 4.00001L20.75 12L19.25 12L19.25 5.81067L5.81067 19.25Z" - fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/OpenInNew.ts b/packages/icons-editor/src/icons/OpenInNew.ts index b6dd0d5709a..a57724c2d1d 100644 --- a/packages/icons-editor/src/icons/OpenInNew.ts +++ b/packages/icons-editor/src/icons/OpenInNew.ts @@ -19,14 +19,12 @@ export const OpenInNewIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Option.ts b/packages/icons-editor/src/icons/Option.ts index 2ef1b75c9a1..58e19073966 100644 --- a/packages/icons-editor/src/icons/Option.ts +++ b/packages/icons-editor/src/icons/Option.ts @@ -19,14 +19,12 @@ export const OptionIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Padding.ts b/packages/icons-editor/src/icons/Padding.ts index 66d07d368c5..0ace99ae823 100644 --- a/packages/icons-editor/src/icons/Padding.ts +++ b/packages/icons-editor/src/icons/Padding.ts @@ -19,14 +19,12 @@ export const PaddingIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/PaddingBottom.ts b/packages/icons-editor/src/icons/PaddingBottom.ts index de056570063..c36b516583b 100644 --- a/packages/icons-editor/src/icons/PaddingBottom.ts +++ b/packages/icons-editor/src/icons/PaddingBottom.ts @@ -19,14 +19,12 @@ export const PaddingBottomIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/PaddingIndependent.ts b/packages/icons-editor/src/icons/PaddingIndependent.ts index fae04165986..92861c94687 100644 --- a/packages/icons-editor/src/icons/PaddingIndependent.ts +++ b/packages/icons-editor/src/icons/PaddingIndependent.ts @@ -19,14 +19,12 @@ export const PaddingIndependentIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/PaddingLeft.ts b/packages/icons-editor/src/icons/PaddingLeft.ts index f923e4bc4a4..202b21cfdc8 100644 --- a/packages/icons-editor/src/icons/PaddingLeft.ts +++ b/packages/icons-editor/src/icons/PaddingLeft.ts @@ -19,14 +19,12 @@ export const PaddingLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/PaddingRight.ts b/packages/icons-editor/src/icons/PaddingRight.ts index abcc3383f18..518248125cc 100644 --- a/packages/icons-editor/src/icons/PaddingRight.ts +++ b/packages/icons-editor/src/icons/PaddingRight.ts @@ -19,14 +19,12 @@ export const PaddingRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/PaddingTop.ts b/packages/icons-editor/src/icons/PaddingTop.ts index 7dc759d1ef6..0ae1a8093ed 100644 --- a/packages/icons-editor/src/icons/PaddingTop.ts +++ b/packages/icons-editor/src/icons/PaddingTop.ts @@ -19,14 +19,12 @@ export const PaddingTopIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/PageFooter.ts b/packages/icons-editor/src/icons/PageFooter.ts index 38aa8b93b76..90aabba00a0 100644 --- a/packages/icons-editor/src/icons/PageFooter.ts +++ b/packages/icons-editor/src/icons/PageFooter.ts @@ -19,14 +19,12 @@ export const PageFooterIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/PageHeader.ts b/packages/icons-editor/src/icons/PageHeader.ts index a41dfde2087..cc6edad5182 100644 --- a/packages/icons-editor/src/icons/PageHeader.ts +++ b/packages/icons-editor/src/icons/PageHeader.ts @@ -19,14 +19,12 @@ export const PageHeaderIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Pages.ts b/packages/icons-editor/src/icons/Pages.ts index 6216c2fb376..a6a15f21cd0 100644 --- a/packages/icons-editor/src/icons/Pages.ts +++ b/packages/icons-editor/src/icons/Pages.ts @@ -19,14 +19,12 @@ export const PagesIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Paragraph.ts b/packages/icons-editor/src/icons/Paragraph.ts index 8f886545b11..ba12deef5ba 100644 --- a/packages/icons-editor/src/icons/Paragraph.ts +++ b/packages/icons-editor/src/icons/Paragraph.ts @@ -19,14 +19,12 @@ export const ParagraphIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Play.ts b/packages/icons-editor/src/icons/Play.ts index 25b3ba42387..58f14633935 100644 --- a/packages/icons-editor/src/icons/Play.ts +++ b/packages/icons-editor/src/icons/Play.ts @@ -19,14 +19,12 @@ export const PlayIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Publish.ts b/packages/icons-editor/src/icons/Publish.ts index 40ba2b54a3f..ff015003f77 100644 --- a/packages/icons-editor/src/icons/Publish.ts +++ b/packages/icons-editor/src/icons/Publish.ts @@ -19,14 +19,12 @@ export const PublishIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/QrCode.ts b/packages/icons-editor/src/icons/QrCode.ts index dbabe855fab..c9bba250661 100644 --- a/packages/icons-editor/src/icons/QrCode.ts +++ b/packages/icons-editor/src/icons/QrCode.ts @@ -19,14 +19,12 @@ export const QrCodeIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/RadioButtonUnchecked.ts b/packages/icons-editor/src/icons/RadioButtonUnchecked.ts index 99533fb5834..2fab78f75ff 100644 --- a/packages/icons-editor/src/icons/RadioButtonUnchecked.ts +++ b/packages/icons-editor/src/icons/RadioButtonUnchecked.ts @@ -19,7 +19,6 @@ export const RadioButtonUncheckedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -27,7 +26,6 @@ export const RadioButtonUncheckedIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M12 21.25C17.1086 21.25 21.25 17.1086 21.25 12C21.25 6.89137 17.1086 2.75 12 2.75C6.89137 2.75 2.75 6.89137 2.75 12C2.75 17.1086 6.89137 21.25 12 21.25ZM22.75 12C22.75 17.9371 17.9371 22.75 12 22.75C6.06294 22.75 1.25 17.9371 1.25 12C1.25 6.06294 6.06294 1.25 12 1.25C17.9371 1.25 22.75 6.06294 22.75 12Z" - fill="#1F1F1F" /> @@ -35,7 +33,6 @@ export const RadioButtonUncheckedIcon = (): string | TemplateResult => { diff --git a/packages/icons-editor/src/icons/Redo.ts b/packages/icons-editor/src/icons/Redo.ts index e17b0b1406e..bac4225bb5b 100644 --- a/packages/icons-editor/src/icons/Redo.ts +++ b/packages/icons-editor/src/icons/Redo.ts @@ -19,14 +19,12 @@ export const RedoIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Remove.ts b/packages/icons-editor/src/icons/Remove.ts index aa1209fed6f..3bc86c65aa7 100644 --- a/packages/icons-editor/src/icons/Remove.ts +++ b/packages/icons-editor/src/icons/Remove.ts @@ -19,7 +19,6 @@ export const RemoveIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -27,12 +26,11 @@ export const RemoveIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M3 12.75L3 11.25L21 11.25L21 12.75L3 12.75Z" - fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/RotateLeft.ts b/packages/icons-editor/src/icons/RotateLeft.ts index 6d2be90adbe..f2a9ec5dce2 100644 --- a/packages/icons-editor/src/icons/RotateLeft.ts +++ b/packages/icons-editor/src/icons/RotateLeft.ts @@ -19,14 +19,12 @@ export const RotateLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Scale.ts b/packages/icons-editor/src/icons/Scale.ts index 4ae0941958b..9237163c77c 100644 --- a/packages/icons-editor/src/icons/Scale.ts +++ b/packages/icons-editor/src/icons/Scale.ts @@ -19,14 +19,12 @@ export const ScaleIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Scroll.ts b/packages/icons-editor/src/icons/Scroll.ts index 0ef46c178e8..6059dba7005 100644 --- a/packages/icons-editor/src/icons/Scroll.ts +++ b/packages/icons-editor/src/icons/Scroll.ts @@ -19,14 +19,12 @@ export const ScrollIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Section.ts b/packages/icons-editor/src/icons/Section.ts index d1491df185b..d39d7cbacb4 100644 --- a/packages/icons-editor/src/icons/Section.ts +++ b/packages/icons-editor/src/icons/Section.ts @@ -19,7 +19,6 @@ export const SectionIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > @@ -27,12 +26,11 @@ export const SectionIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M20.25 6C20.25 4.75736 19.2426 3.75 18 3.75L6 3.75C4.75736 3.75 3.75 4.75736 3.75 6L3.75 8.25L20.25 8.25L20.25 6ZM20.25 9.75L3.75 9.75L3.75 14.25L20.25 14.25L20.25 9.75ZM20.25 15.75L3.75 15.75L3.75 18C3.75 19.2426 4.75736 20.25 6 20.25L18 20.25C19.2426 20.25 20.25 19.2426 20.25 18L20.25 15.75ZM18 2.25C20.0711 2.25 21.75 3.92893 21.75 6L21.75 18C21.75 20.0711 20.0711 21.75 18 21.75L6 21.75C3.92893 21.75 2.25 20.0711 2.25 18L2.25 6C2.25 3.92893 3.92893 2.25 6 2.25L18 2.25Z" - fill="#1F1F1F" /> - + diff --git a/packages/icons-editor/src/icons/Settings.ts b/packages/icons-editor/src/icons/Settings.ts index 2416b7c0359..b483717258b 100644 --- a/packages/icons-editor/src/icons/Settings.ts +++ b/packages/icons-editor/src/icons/Settings.ts @@ -19,14 +19,12 @@ export const SettingsIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Share.ts b/packages/icons-editor/src/icons/Share.ts index 49402e777e8..5240d585758 100644 --- a/packages/icons-editor/src/icons/Share.ts +++ b/packages/icons-editor/src/icons/Share.ts @@ -19,14 +19,12 @@ export const ShareIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Shift.ts b/packages/icons-editor/src/icons/Shift.ts index 46c12b58490..abd3110647e 100644 --- a/packages/icons-editor/src/icons/Shift.ts +++ b/packages/icons-editor/src/icons/Shift.ts @@ -19,14 +19,12 @@ export const ShiftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/SketchStatic.ts b/packages/icons-editor/src/icons/SketchStatic.ts index 4999865247c..6e651bdfae8 100644 --- a/packages/icons-editor/src/icons/SketchStatic.ts +++ b/packages/icons-editor/src/icons/SketchStatic.ts @@ -19,38 +19,31 @@ export const SketchStaticIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > - + diff --git a/packages/icons-editor/src/icons/Skew.ts b/packages/icons-editor/src/icons/Skew.ts index 214f6fb07e1..f2f3c02dbb2 100644 --- a/packages/icons-editor/src/icons/Skew.ts +++ b/packages/icons-editor/src/icons/Skew.ts @@ -19,14 +19,12 @@ export const SkewIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/SliderInvisible.ts b/packages/icons-editor/src/icons/SliderInvisible.ts index 353e5867590..7f5ea4180ab 100644 --- a/packages/icons-editor/src/icons/SliderInvisible.ts +++ b/packages/icons-editor/src/icons/SliderInvisible.ts @@ -19,14 +19,12 @@ export const SliderInvisibleIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Smartphone.ts b/packages/icons-editor/src/icons/Smartphone.ts index 8237b03ddc5..b6f892b8f56 100644 --- a/packages/icons-editor/src/icons/Smartphone.ts +++ b/packages/icons-editor/src/icons/Smartphone.ts @@ -19,14 +19,12 @@ export const SmartphoneIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/SpacingHoriz.ts b/packages/icons-editor/src/icons/SpacingHoriz.ts index 3d3d668fae8..a3645c90044 100644 --- a/packages/icons-editor/src/icons/SpacingHoriz.ts +++ b/packages/icons-editor/src/icons/SpacingHoriz.ts @@ -19,14 +19,12 @@ export const SpacingHorizIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/SpacingVert.ts b/packages/icons-editor/src/icons/SpacingVert.ts index 9f22b40d3a7..d4021eb71e1 100644 --- a/packages/icons-editor/src/icons/SpacingVert.ts +++ b/packages/icons-editor/src/icons/SpacingVert.ts @@ -19,14 +19,12 @@ export const SpacingVertIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Star.ts b/packages/icons-editor/src/icons/Star.ts index 930b52f3eaa..5c9c54dfde6 100644 --- a/packages/icons-editor/src/icons/Star.ts +++ b/packages/icons-editor/src/icons/Star.ts @@ -19,14 +19,12 @@ export const StarIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Stop.ts b/packages/icons-editor/src/icons/Stop.ts index 0e80811fa17..5881aa90f7e 100644 --- a/packages/icons-editor/src/icons/Stop.ts +++ b/packages/icons-editor/src/icons/Stop.ts @@ -19,14 +19,12 @@ export const StopIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/StopCircle.ts b/packages/icons-editor/src/icons/StopCircle.ts index 606ee93678d..6168f7b5e08 100644 --- a/packages/icons-editor/src/icons/StopCircle.ts +++ b/packages/icons-editor/src/icons/StopCircle.ts @@ -19,14 +19,12 @@ export const StopCircleIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Style.ts b/packages/icons-editor/src/icons/Style.ts index 0ed075d7709..a2b89884f24 100644 --- a/packages/icons-editor/src/icons/Style.ts +++ b/packages/icons-editor/src/icons/Style.ts @@ -19,14 +19,12 @@ export const StyleIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/TabletMac.ts b/packages/icons-editor/src/icons/TabletMac.ts index 35533691d2b..a6ba43b85bf 100644 --- a/packages/icons-editor/src/icons/TabletMac.ts +++ b/packages/icons-editor/src/icons/TabletMac.ts @@ -19,14 +19,12 @@ export const TabletMacIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Tag.ts b/packages/icons-editor/src/icons/Tag.ts index 90ac5ec3d46..48badf1a383 100644 --- a/packages/icons-editor/src/icons/Tag.ts +++ b/packages/icons-editor/src/icons/Tag.ts @@ -19,14 +19,12 @@ export const TagIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Text.ts b/packages/icons-editor/src/icons/Text.ts index bfcacb47880..41d38585ed3 100644 --- a/packages/icons-editor/src/icons/Text.ts +++ b/packages/icons-editor/src/icons/Text.ts @@ -19,14 +19,12 @@ export const TextIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/TextBold.ts b/packages/icons-editor/src/icons/TextBold.ts index 2dba96ed828..102f5ca4ac8 100644 --- a/packages/icons-editor/src/icons/TextBold.ts +++ b/packages/icons-editor/src/icons/TextBold.ts @@ -19,14 +19,12 @@ export const TextBoldIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/TextDeleteline.ts b/packages/icons-editor/src/icons/TextDeleteline.ts index 718b1957d5b..900c4abcdd8 100644 --- a/packages/icons-editor/src/icons/TextDeleteline.ts +++ b/packages/icons-editor/src/icons/TextDeleteline.ts @@ -19,14 +19,12 @@ export const TextDeletelineIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/TextItaly.ts b/packages/icons-editor/src/icons/TextItaly.ts index 719dbcb9140..d06a3461dfa 100644 --- a/packages/icons-editor/src/icons/TextItaly.ts +++ b/packages/icons-editor/src/icons/TextItaly.ts @@ -19,14 +19,12 @@ export const TextItalyIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/TextScale.ts b/packages/icons-editor/src/icons/TextScale.ts index e54224210ab..c11ef0552cd 100644 --- a/packages/icons-editor/src/icons/TextScale.ts +++ b/packages/icons-editor/src/icons/TextScale.ts @@ -19,14 +19,12 @@ export const TextScaleIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/TextUnderline.ts b/packages/icons-editor/src/icons/TextUnderline.ts index 2106007fe5b..8578c1b52d2 100644 --- a/packages/icons-editor/src/icons/TextUnderline.ts +++ b/packages/icons-editor/src/icons/TextUnderline.ts @@ -19,14 +19,12 @@ export const TextUnderlineIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Theme.ts b/packages/icons-editor/src/icons/Theme.ts index fd0b3bba06b..60ef8a77d82 100644 --- a/packages/icons-editor/src/icons/Theme.ts +++ b/packages/icons-editor/src/icons/Theme.ts @@ -19,20 +19,17 @@ export const ThemeIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Time.ts b/packages/icons-editor/src/icons/Time.ts index 36eeacd0276..55bea746c99 100644 --- a/packages/icons-editor/src/icons/Time.ts +++ b/packages/icons-editor/src/icons/Time.ts @@ -19,14 +19,12 @@ export const TimeIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Trigger.ts b/packages/icons-editor/src/icons/Trigger.ts index 80c741a0f6c..69dc1bd0d61 100644 --- a/packages/icons-editor/src/icons/Trigger.ts +++ b/packages/icons-editor/src/icons/Trigger.ts @@ -19,15 +19,14 @@ export const TriggerIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > - + - + diff --git a/packages/icons-editor/src/icons/Tune.ts b/packages/icons-editor/src/icons/Tune.ts index 44e3b2bbe7f..0d5846b297e 100644 --- a/packages/icons-editor/src/icons/Tune.ts +++ b/packages/icons-editor/src/icons/Tune.ts @@ -19,14 +19,12 @@ export const TuneIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Undo.ts b/packages/icons-editor/src/icons/Undo.ts index f100989d73d..da90f3260f5 100644 --- a/packages/icons-editor/src/icons/Undo.ts +++ b/packages/icons-editor/src/icons/Undo.ts @@ -19,14 +19,12 @@ export const UndoIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Unit.ts b/packages/icons-editor/src/icons/Unit.ts index fc73f02d2ba..c0ca38b9256 100644 --- a/packages/icons-editor/src/icons/Unit.ts +++ b/packages/icons-editor/src/icons/Unit.ts @@ -19,16 +19,13 @@ export const UnitIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Unlocked.ts b/packages/icons-editor/src/icons/Unlocked.ts index 39140a0afe9..9634de675d5 100644 --- a/packages/icons-editor/src/icons/Unlocked.ts +++ b/packages/icons-editor/src/icons/Unlocked.ts @@ -19,14 +19,12 @@ export const UnlockedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/VertCenters.ts b/packages/icons-editor/src/icons/VertCenters.ts index fdfc9ec7090..8d9638e6f06 100644 --- a/packages/icons-editor/src/icons/VertCenters.ts +++ b/packages/icons-editor/src/icons/VertCenters.ts @@ -19,14 +19,12 @@ export const VertCentersIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/VertLeft.ts b/packages/icons-editor/src/icons/VertLeft.ts index 1710cfdd7b6..9395e7f631a 100644 --- a/packages/icons-editor/src/icons/VertLeft.ts +++ b/packages/icons-editor/src/icons/VertLeft.ts @@ -19,14 +19,12 @@ export const VertLeftIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/VertRight.ts b/packages/icons-editor/src/icons/VertRight.ts index 73a7c84fc15..ca13cf3b09b 100644 --- a/packages/icons-editor/src/icons/VertRight.ts +++ b/packages/icons-editor/src/icons/VertRight.ts @@ -19,14 +19,12 @@ export const VertRightIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Video.ts b/packages/icons-editor/src/icons/Video.ts index 5ac33df0b21..246fe5f10a7 100644 --- a/packages/icons-editor/src/icons/Video.ts +++ b/packages/icons-editor/src/icons/Video.ts @@ -19,14 +19,12 @@ export const VideoIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/WidthFill.ts b/packages/icons-editor/src/icons/WidthFill.ts index 02444cef040..570e25aa7ad 100644 --- a/packages/icons-editor/src/icons/WidthFill.ts +++ b/packages/icons-editor/src/icons/WidthFill.ts @@ -19,14 +19,12 @@ export const WidthFillIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/WidthFixed.ts b/packages/icons-editor/src/icons/WidthFixed.ts index ef0f44ab229..29f4f5999f3 100644 --- a/packages/icons-editor/src/icons/WidthFixed.ts +++ b/packages/icons-editor/src/icons/WidthFixed.ts @@ -19,14 +19,12 @@ export const WidthFixedIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/WidthHug.ts b/packages/icons-editor/src/icons/WidthHug.ts index 765d7d9f90d..fdf476437cf 100644 --- a/packages/icons-editor/src/icons/WidthHug.ts +++ b/packages/icons-editor/src/icons/WidthHug.ts @@ -19,14 +19,12 @@ export const WidthHugIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/icons/Wrap.ts b/packages/icons-editor/src/icons/Wrap.ts index ae4e5c293f3..98e33ed26c9 100644 --- a/packages/icons-editor/src/icons/Wrap.ts +++ b/packages/icons-editor/src/icons/Wrap.ts @@ -19,14 +19,12 @@ export const WrapIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" - fill="none" xmlns="http://www.w3.org/2000/svg" > `; diff --git a/packages/icons-editor/src/svg/ArrowDown.svg b/packages/icons-editor/src/svg/ArrowDown.svg deleted file mode 100644 index 0a1031fe165..00000000000 --- a/packages/icons-editor/src/svg/ArrowDown.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - From a7377a5f10e0278e56a370097c582540ae01c1c3 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Fri, 11 Nov 2022 09:54:44 +0800 Subject: [PATCH 19/28] feat: icon updated --- packages/icons/src/icons-editor.svg.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/icons/src/icons-editor.svg.ts b/packages/icons/src/icons-editor.svg.ts index afc39027638..3995238e278 100644 --- a/packages/icons/src/icons-editor.svg.ts +++ b/packages/icons/src/icons-editor.svg.ts @@ -11,4 +11,4 @@ OF ANY KIND, either express or implied. See the License for the specific languag governing permissions and limitations under the License. */ import { svg } from '@iliad-ui/base'; -export default svg``; +export default svg``; From 9c34f197fd16029a2b6cffbadb1d0b56a10c3b10 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Fri, 11 Nov 2022 09:55:59 +0800 Subject: [PATCH 20/28] chore: release new versions - @iliad-ui/action-bar@0.7.5 - @iliad-ui/action-button@0.14.3 - @iliad-ui/action-group@0.12.3 - @iliad-ui/action-menu@0.16.5 - @iliad-ui/bundle@0.27.7 - @iliad-ui/button@0.24.0 - @iliad-ui/card@0.15.3 - @iliad-ui/checkbox@0.16.0 - @iliad-ui/dialog@0.11.3 - @iliad-ui/help-text@0.3.0 - @iliad-ui/icons-editor@0.12.0 - @iliad-ui/icons@0.23.0 - @iliad-ui/illustrated-message@0.11.3 - @iliad-ui/menu@0.17.3 - @iliad-ui/number-field@0.9.3 - @iliad-ui/overlay@0.18.3 - @iliad-ui/picker@0.14.5 - @iliad-ui/popover@0.16.5 - @iliad-ui/react@0.20.4 - @iliad-ui/search@0.13.3 - @iliad-ui/slider@0.18.3 - @iliad-ui/split-button@0.10.5 - @iliad-ui/styles@0.18.0 - @iliad-ui/switch@0.12.3 - @iliad-ui/tags@0.13.3 - @iliad-ui/theme@0.15.3 - @iliad-ui/toast@0.18.3 - @iliad-ui/tooltip@0.13.3 - documentation@0.1.38 - example-project-rollup@0.5.7 - example-project-webpack@1.6.7 - @iliad-ui/story-decorator@0.10.5 - @iliad-ui/vrt-compare@0.7.5 --- packages/action-bar/CHANGELOG.md | 4 ++ packages/action-bar/package.json | 4 +- packages/action-button/CHANGELOG.md | 4 ++ packages/action-button/package.json | 4 +- packages/action-group/CHANGELOG.md | 4 ++ packages/action-group/package.json | 4 +- packages/action-menu/CHANGELOG.md | 4 ++ packages/action-menu/package.json | 8 +-- packages/bundle/CHANGELOG.md | 4 ++ packages/bundle/package.json | 50 +++++++++---------- packages/button/CHANGELOG.md | 6 +++ packages/button/package.json | 2 +- packages/card/CHANGELOG.md | 4 ++ packages/card/package.json | 6 +-- packages/checkbox/CHANGELOG.md | 6 +++ packages/checkbox/package.json | 4 +- packages/dialog/CHANGELOG.md | 4 ++ packages/dialog/package.json | 6 +-- packages/help-text/CHANGELOG.md | 6 +++ packages/help-text/package.json | 2 +- packages/icons-editor/CHANGELOG.md | 7 +++ packages/icons-editor/package.json | 2 +- packages/icons/CHANGELOG.md | 8 +++ packages/icons/package.json | 2 +- packages/illustrated-message/CHANGELOG.md | 4 ++ packages/illustrated-message/package.json | 4 +- packages/menu/CHANGELOG.md | 4 ++ packages/menu/package.json | 4 +- packages/number-field/CHANGELOG.md | 4 ++ packages/number-field/package.json | 4 +- packages/overlay/CHANGELOG.md | 4 ++ packages/overlay/package.json | 6 +-- packages/picker/CHANGELOG.md | 4 ++ packages/picker/package.json | 10 ++-- packages/popover/CHANGELOG.md | 4 ++ packages/popover/package.json | 6 +-- packages/react/CHANGELOG.md | 4 ++ packages/react/package.json | 6 +-- packages/search/CHANGELOG.md | 4 ++ packages/search/package.json | 4 +- packages/slider/CHANGELOG.md | 4 ++ packages/slider/package.json | 6 +-- packages/split-button/CHANGELOG.md | 4 ++ packages/split-button/package.json | 8 +-- packages/styles/CHANGELOG.md | 7 +++ packages/styles/package.json | 2 +- packages/switch/CHANGELOG.md | 4 ++ packages/switch/package.json | 4 +- packages/tags/CHANGELOG.md | 4 ++ packages/tags/package.json | 4 +- packages/theme/CHANGELOG.md | 4 ++ packages/theme/package.json | 4 +- packages/toast/CHANGELOG.md | 4 ++ packages/toast/package.json | 4 +- packages/tooltip/CHANGELOG.md | 4 ++ packages/tooltip/package.json | 4 +- projects/documentation/CHANGELOG.md | 4 ++ projects/documentation/package.json | 4 +- projects/example-project-rollup/CHANGELOG.md | 4 ++ projects/example-project-rollup/package.json | 16 +++--- projects/example-project-webpack/CHANGELOG.md | 4 ++ projects/example-project-webpack/package.json | 12 ++--- projects/story-decorator/CHANGELOG.md | 4 ++ projects/story-decorator/package.json | 12 ++--- projects/vrt-compare/CHANGELOG.md | 4 ++ projects/vrt-compare/package.json | 10 ++-- 66 files changed, 262 insertions(+), 114 deletions(-) diff --git a/packages/action-bar/CHANGELOG.md b/packages/action-bar/CHANGELOG.md index 4217fd734e9..4411304dcf2 100644 --- a/packages/action-bar/CHANGELOG.md +++ b/packages/action-bar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.7.4...@iliad-ui/action-bar@0.7.5) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/action-bar + ## [0.7.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.7.3...@iliad-ui/action-bar@0.7.4) (2022-09-13) **Note:** Version bump only for package @iliad-ui/action-bar diff --git a/packages/action-bar/package.json b/packages/action-bar/package.json index 03b1ef12cba..2f668a8d3a5 100644 --- a/packages/action-bar/package.json +++ b/packages/action-bar/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-bar", - "version": "0.7.4", + "version": "0.7.5", "publishConfig": { "access": "public" }, @@ -45,7 +45,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/popover": "^0.16.4", + "@iliad-ui/popover": "^0.16.5", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/action-button/CHANGELOG.md b/packages/action-button/CHANGELOG.md index 53aed56c336..4a0aee62927 100644 --- a/packages/action-button/CHANGELOG.md +++ b/packages/action-button/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-button@0.14.2...@iliad-ui/action-button@0.14.3) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/action-button + ## [0.14.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-button@0.13.7...@iliad-ui/action-button@0.14.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/action-button diff --git a/packages/action-button/package.json b/packages/action-button/package.json index 066757cf793..9e78adb51a6 100644 --- a/packages/action-button/package.json +++ b/packages/action-button/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-button", - "version": "0.14.2", + "version": "0.14.3", "publishConfig": { "access": "public" }, @@ -45,7 +45,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/button": "^0.23.2", + "@iliad-ui/button": "^0.24.0", "@iliad-ui/icon": "^0.17.2", "@iliad-ui/icons-ui": "^0.13.2", "tslib": "^2.0.0" diff --git a/packages/action-group/CHANGELOG.md b/packages/action-group/CHANGELOG.md index cc66fe46564..843718772af 100644 --- a/packages/action-group/CHANGELOG.md +++ b/packages/action-group/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-group@0.12.2...@iliad-ui/action-group@0.12.3) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/action-group + ## [0.12.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-group@0.11.10...@iliad-ui/action-group@0.12.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/action-group diff --git a/packages/action-group/package.json b/packages/action-group/package.json index f7a2e16bb45..430d57ac716 100644 --- a/packages/action-group/package.json +++ b/packages/action-group/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-group", - "version": "0.12.2", + "version": "0.12.3", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.14.2", + "@iliad-ui/action-button": "^0.14.3", "@iliad-ui/base": "^0.12.2", "tslib": "^2.0.0" }, diff --git a/packages/action-menu/CHANGELOG.md b/packages/action-menu/CHANGELOG.md index 68f423e47ea..a30396ba341 100644 --- a/packages/action-menu/CHANGELOG.md +++ b/packages/action-menu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.16.4...@iliad-ui/action-menu@0.16.5) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/action-menu + ## [0.16.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.16.3...@iliad-ui/action-menu@0.16.4) (2022-09-13) **Note:** Version bump only for package @iliad-ui/action-menu diff --git a/packages/action-menu/package.json b/packages/action-menu/package.json index bf8672c2829..7f237f0963f 100644 --- a/packages/action-menu/package.json +++ b/packages/action-menu/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-menu", - "version": "0.16.4", + "version": "0.16.5", "publishConfig": { "access": "public" }, @@ -46,12 +46,12 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.14.2", + "@iliad-ui/action-button": "^0.14.3", "@iliad-ui/base": "^0.12.2", "@iliad-ui/icon": "^0.17.2", "@iliad-ui/icons-workflow": "^0.13.2", - "@iliad-ui/menu": "^0.17.2", - "@iliad-ui/picker": "^0.14.4", + "@iliad-ui/menu": "^0.17.3", + "@iliad-ui/picker": "^0.14.5", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/bundle/CHANGELOG.md b/packages/bundle/CHANGELOG.md index c8a50668432..863e8f18820 100644 --- a/packages/bundle/CHANGELOG.md +++ b/packages/bundle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.27.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.6...@iliad-ui/bundle@0.27.7) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/bundle + ## [0.27.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.5...@iliad-ui/bundle@0.27.6) (2022-10-26) **Note:** Version bump only for package @iliad-ui/bundle diff --git a/packages/bundle/package.json b/packages/bundle/package.json index 81b8dd3d7d8..ee2d2fd4d0a 100644 --- a/packages/bundle/package.json +++ b/packages/bundle/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/bundle", - "version": "0.27.6", + "version": "0.27.7", "publishConfig": { "access": "public" }, @@ -47,61 +47,61 @@ ], "dependencies": { "@iliad-ui/accordion": "^0.9.2", - "@iliad-ui/action-bar": "^0.7.4", - "@iliad-ui/action-button": "^0.14.2", - "@iliad-ui/action-group": "^0.12.2", - "@iliad-ui/action-menu": "^0.16.4", + "@iliad-ui/action-bar": "^0.7.5", + "@iliad-ui/action-button": "^0.14.3", + "@iliad-ui/action-group": "^0.12.3", + "@iliad-ui/action-menu": "^0.16.5", "@iliad-ui/asset": "^0.9.2", "@iliad-ui/avatar": "^0.14.2", "@iliad-ui/banner": "^0.13.2", "@iliad-ui/breadcrumb": "^0.2.2", - "@iliad-ui/button": "^0.23.2", + "@iliad-ui/button": "^0.24.0", "@iliad-ui/button-group": "^0.11.2", - "@iliad-ui/card": "^0.15.2", - "@iliad-ui/checkbox": "^0.15.2", + "@iliad-ui/card": "^0.15.3", + "@iliad-ui/checkbox": "^0.16.0", "@iliad-ui/coachmark": "^0.11.2", "@iliad-ui/color-area": "^0.9.2", "@iliad-ui/color-handle": "^0.6.2", "@iliad-ui/color-loupe": "^0.6.2", "@iliad-ui/color-slider": "^0.8.2", "@iliad-ui/color-wheel": "^0.8.2", - "@iliad-ui/dialog": "^0.11.2", + "@iliad-ui/dialog": "^0.11.3", "@iliad-ui/divider": "^0.7.2", "@iliad-ui/dropzone": "^0.12.2", "@iliad-ui/field-group": "^0.8.2", "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/icon": "^0.17.2", - "@iliad-ui/icons": "^0.22.0", - "@iliad-ui/icons-editor": "^0.11.0", + "@iliad-ui/icons": "^0.23.0", + "@iliad-ui/icons-editor": "^0.12.0", "@iliad-ui/icons-ui": "^0.13.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/iconset": "^0.13.2", - "@iliad-ui/illustrated-message": "^0.11.2", + "@iliad-ui/illustrated-message": "^0.11.3", "@iliad-ui/link": "^0.14.2", - "@iliad-ui/menu": "^0.17.2", + "@iliad-ui/menu": "^0.17.3", "@iliad-ui/meter": "^0.9.2", - "@iliad-ui/number-field": "^0.9.2", - "@iliad-ui/overlay": "^0.18.2", - "@iliad-ui/picker": "^0.14.4", - "@iliad-ui/popover": "^0.16.4", + "@iliad-ui/number-field": "^0.9.3", + "@iliad-ui/overlay": "^0.18.3", + "@iliad-ui/picker": "^0.14.5", + "@iliad-ui/popover": "^0.16.5", "@iliad-ui/progress-bar": "^0.8.2", "@iliad-ui/progress-circle": "^0.7.2", "@iliad-ui/quick-actions": "^0.9.2", "@iliad-ui/radio": "^0.16.2", - "@iliad-ui/search": "^0.13.2", + "@iliad-ui/search": "^0.13.3", "@iliad-ui/sidenav": "^0.15.2", - "@iliad-ui/slider": "^0.18.2", - "@iliad-ui/split-button": "^0.10.4", + "@iliad-ui/slider": "^0.18.3", + "@iliad-ui/split-button": "^0.10.5", "@iliad-ui/split-view": "^0.9.2", "@iliad-ui/status-light": "^0.13.2", - "@iliad-ui/switch": "^0.12.2", + "@iliad-ui/switch": "^0.12.3", "@iliad-ui/tabs": "^0.13.2", - "@iliad-ui/tags": "^0.13.2", + "@iliad-ui/tags": "^0.13.3", "@iliad-ui/textfield": "^0.15.2", - "@iliad-ui/theme": "^0.15.2", + "@iliad-ui/theme": "^0.15.3", "@iliad-ui/thumbnail": "^0.7.2", - "@iliad-ui/toast": "^0.18.2", - "@iliad-ui/tooltip": "^0.13.2", + "@iliad-ui/toast": "^0.18.3", + "@iliad-ui/tooltip": "^0.13.3", "@iliad-ui/top-nav": "^0.8.2", "@iliad-ui/tray": "^0.7.2", "@iliad-ui/tree": "^0.8.1", diff --git a/packages/button/CHANGELOG.md b/packages/button/CHANGELOG.md index 18373edb6de..53de9d935e2 100644 --- a/packages/button/CHANGELOG.md +++ b/packages/button/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.24.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/button@0.23.2...@iliad-ui/button@0.24.0) (2022-11-11) + +### Features + +- cta 样式颜色修改 ([a5a6c57](https://github.com/gaoding-inc/iliad-ui/commit/a5a6c57d724798f341b9efca3b4eb15f19a3777c)) + ## [0.23.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/button@0.22.7...@iliad-ui/button@0.23.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/button diff --git a/packages/button/package.json b/packages/button/package.json index c1c5fdb3458..f1489decdaa 100644 --- a/packages/button/package.json +++ b/packages/button/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/button", - "version": "0.23.2", + "version": "0.24.0", "publishConfig": { "access": "public" }, diff --git a/packages/card/CHANGELOG.md b/packages/card/CHANGELOG.md index 309ee573c1d..4968af7649a 100644 --- a/packages/card/CHANGELOG.md +++ b/packages/card/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.15.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/card@0.15.2...@iliad-ui/card@0.15.3) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/card + ## [0.15.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/card@0.14.17...@iliad-ui/card@0.15.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/card diff --git a/packages/card/package.json b/packages/card/package.json index 9d732ad06f2..6dd1ef08237 100644 --- a/packages/card/package.json +++ b/packages/card/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/card", - "version": "0.15.2", + "version": "0.15.3", "publishConfig": { "access": "public" }, @@ -46,11 +46,11 @@ "dependencies": { "@iliad-ui/asset": "^0.9.2", "@iliad-ui/base": "^0.12.2", - "@iliad-ui/checkbox": "^0.15.2", + "@iliad-ui/checkbox": "^0.16.0", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/quick-actions": "^0.9.2", "@iliad-ui/shared": "^0.19.2", - "@iliad-ui/styles": "^0.17.2", + "@iliad-ui/styles": "^0.18.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/checkbox/CHANGELOG.md b/packages/checkbox/CHANGELOG.md index e0629292d20..90a345036ef 100644 --- a/packages/checkbox/CHANGELOG.md +++ b/packages/checkbox/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.16.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/checkbox@0.15.2...@iliad-ui/checkbox@0.16.0) (2022-11-11) + +### Features + +- checkbox 样式更改 ([34b6303](https://github.com/gaoding-inc/iliad-ui/commit/34b6303b9c3b543a8f2f33a8cac57554cf947f2e)) + ## [0.15.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/checkbox@0.14.15...@iliad-ui/checkbox@0.15.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/checkbox diff --git a/packages/checkbox/package.json b/packages/checkbox/package.json index a87c705d459..67a2c16c622 100644 --- a/packages/checkbox/package.json +++ b/packages/checkbox/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/checkbox", - "version": "0.15.2", + "version": "0.16.0", "publishConfig": { "access": "public" }, @@ -46,7 +46,7 @@ "dependencies": { "@iliad-ui/base": "^0.12.2", "@iliad-ui/icon": "^0.17.2", - "@iliad-ui/icons-editor": "^0.11.0", + "@iliad-ui/icons-editor": "^0.12.0", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/dialog/CHANGELOG.md b/packages/dialog/CHANGELOG.md index cc982d5a6bc..7a999b3fab7 100644 --- a/packages/dialog/CHANGELOG.md +++ b/packages/dialog/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.11.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/dialog@0.11.2...@iliad-ui/dialog@0.11.3) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/dialog + ## [0.11.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/dialog@0.10.17...@iliad-ui/dialog@0.11.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/dialog diff --git a/packages/dialog/package.json b/packages/dialog/package.json index 75389c8a0ab..af3c973ba1f 100644 --- a/packages/dialog/package.json +++ b/packages/dialog/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/dialog", - "version": "0.11.2", + "version": "0.11.3", "publishConfig": { "access": "public" }, @@ -46,9 +46,9 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.14.2", + "@iliad-ui/action-button": "^0.14.3", "@iliad-ui/base": "^0.12.2", - "@iliad-ui/button": "^0.23.2", + "@iliad-ui/button": "^0.24.0", "@iliad-ui/button-group": "^0.11.2", "@iliad-ui/divider": "^0.7.2", "@iliad-ui/icon": "^0.17.2", diff --git a/packages/help-text/CHANGELOG.md b/packages/help-text/CHANGELOG.md index ec250e01290..1b6aaf69525 100644 --- a/packages/help-text/CHANGELOG.md +++ b/packages/help-text/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.3.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/help-text@0.2.0...@iliad-ui/help-text@0.3.0) (2022-11-11) + +### Features + +- checkbox 样式更改 ([34b6303](https://github.com/gaoding-inc/iliad-ui/commit/34b6303b9c3b543a8f2f33a8cac57554cf947f2e)) + # 0.2.0 (2022-08-05) ### Features diff --git a/packages/help-text/package.json b/packages/help-text/package.json index e185bebf77f..6dbd99e4451 100644 --- a/packages/help-text/package.json +++ b/packages/help-text/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/help-text", - "version": "0.2.0", + "version": "0.3.0", "publishConfig": { "access": "public" }, diff --git a/packages/icons-editor/CHANGELOG.md b/packages/icons-editor/CHANGELOG.md index 727685a0979..3f3f5c454f1 100644 --- a/packages/icons-editor/CHANGELOG.md +++ b/packages/icons-editor/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.12.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.11.0...@iliad-ui/icons-editor@0.12.0) (2022-11-11) + +### Features + +- icons update ([63da3ca](https://github.com/gaoding-inc/iliad-ui/commit/63da3caa7627e746a44b3d7a363d4a11cc21bac6)) +- icons 更新 ([bb22233](https://github.com/gaoding-inc/iliad-ui/commit/bb22233526b05aff7827b18d5f468eac1f84616c)) + # [0.11.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.10.0...@iliad-ui/icons-editor@0.11.0) (2022-09-13) ### Features diff --git a/packages/icons-editor/package.json b/packages/icons-editor/package.json index 2fe24f13cf1..cca0d70fd41 100644 --- a/packages/icons-editor/package.json +++ b/packages/icons-editor/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons-editor", - "version": "0.11.0", + "version": "0.12.0", "publishConfig": { "access": "public" }, diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index d9b7209827a..261b45c3396 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.23.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.22.0...@iliad-ui/icons@0.23.0) (2022-11-11) + +### Features + +- checkbox 样式更改 ([34b6303](https://github.com/gaoding-inc/iliad-ui/commit/34b6303b9c3b543a8f2f33a8cac57554cf947f2e)) +- icon updated ([a7377a5](https://github.com/gaoding-inc/iliad-ui/commit/a7377a5f10e0278e56a370097c582540ae01c1c3)) +- icons update ([63da3ca](https://github.com/gaoding-inc/iliad-ui/commit/63da3caa7627e746a44b3d7a363d4a11cc21bac6)) + # [0.22.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.21.0...@iliad-ui/icons@0.22.0) (2022-09-13) ### Features diff --git a/packages/icons/package.json b/packages/icons/package.json index b870f4615bb..80da96429e6 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons", - "version": "0.22.0", + "version": "0.23.0", "publishConfig": { "access": "public" }, diff --git a/packages/illustrated-message/CHANGELOG.md b/packages/illustrated-message/CHANGELOG.md index a0b27fa99d9..07533b0a5ba 100644 --- a/packages/illustrated-message/CHANGELOG.md +++ b/packages/illustrated-message/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.11.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/illustrated-message@0.11.2...@iliad-ui/illustrated-message@0.11.3) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/illustrated-message + ## [0.11.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/illustrated-message@0.10.15...@iliad-ui/illustrated-message@0.11.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/illustrated-message diff --git a/packages/illustrated-message/package.json b/packages/illustrated-message/package.json index bac0f94a29d..1514fcade85 100644 --- a/packages/illustrated-message/package.json +++ b/packages/illustrated-message/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/illustrated-message", - "version": "0.11.2", + "version": "0.11.3", "publishConfig": { "access": "public" }, @@ -45,7 +45,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/styles": "^0.17.2", + "@iliad-ui/styles": "^0.18.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/menu/CHANGELOG.md b/packages/menu/CHANGELOG.md index be81c53363e..04ed17968c0 100644 --- a/packages/menu/CHANGELOG.md +++ b/packages/menu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.17.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/menu@0.17.2...@iliad-ui/menu@0.17.3) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/menu + ## [0.17.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/menu@0.17.1...@iliad-ui/menu@0.17.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/menu diff --git a/packages/menu/package.json b/packages/menu/package.json index 6e2197a64d4..682638ffa50 100644 --- a/packages/menu/package.json +++ b/packages/menu/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/menu", - "version": "0.17.2", + "version": "0.17.3", "publishConfig": { "access": "public" }, @@ -50,7 +50,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.14.2", + "@iliad-ui/action-button": "^0.14.3", "@iliad-ui/base": "^0.12.2", "@iliad-ui/icon": "^0.17.2", "@iliad-ui/icons-ui": "^0.13.2", diff --git a/packages/number-field/CHANGELOG.md b/packages/number-field/CHANGELOG.md index 1b62bd0c825..ab5504f3933 100644 --- a/packages/number-field/CHANGELOG.md +++ b/packages/number-field/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/number-field@0.9.2...@iliad-ui/number-field@0.9.3) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/number-field + ## [0.9.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/number-field@0.9.1...@iliad-ui/number-field@0.9.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/number-field diff --git a/packages/number-field/package.json b/packages/number-field/package.json index 361df53dd5c..36d56d53500 100644 --- a/packages/number-field/package.json +++ b/packages/number-field/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/number-field", - "version": "0.9.2", + "version": "0.9.3", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.14.2", + "@iliad-ui/action-button": "^0.14.3", "@iliad-ui/base": "^0.12.2", "@iliad-ui/icon": "^0.17.2", "@iliad-ui/icons-ui": "^0.13.2", diff --git a/packages/overlay/CHANGELOG.md b/packages/overlay/CHANGELOG.md index c5f115a56f0..8862da6865d 100644 --- a/packages/overlay/CHANGELOG.md +++ b/packages/overlay/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/overlay@0.18.2...@iliad-ui/overlay@0.18.3) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/overlay + ## [0.18.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/overlay@0.18.1...@iliad-ui/overlay@0.18.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/overlay diff --git a/packages/overlay/package.json b/packages/overlay/package.json index 63523057755..ecdaebd3020 100644 --- a/packages/overlay/package.json +++ b/packages/overlay/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/overlay", - "version": "0.18.2", + "version": "0.18.3", "publishConfig": { "access": "public" }, @@ -48,10 +48,10 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-button": "^0.14.2", + "@iliad-ui/action-button": "^0.14.3", "@iliad-ui/base": "^0.12.2", "@iliad-ui/shared": "^0.19.2", - "@iliad-ui/theme": "^0.15.2", + "@iliad-ui/theme": "^0.15.3", "@popperjs/core": "^2.2.2", "popper-max-size-modifier": "^0.2.0", "tslib": "^2.0.0" diff --git a/packages/picker/CHANGELOG.md b/packages/picker/CHANGELOG.md index 3e827e76266..a776c18e793 100644 --- a/packages/picker/CHANGELOG.md +++ b/packages/picker/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.14.4...@iliad-ui/picker@0.14.5) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/picker + ## [0.14.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.14.3...@iliad-ui/picker@0.14.4) (2022-09-13) **Note:** Version bump only for package @iliad-ui/picker diff --git a/packages/picker/package.json b/packages/picker/package.json index 44788301d79..023c8f02954 100644 --- a/packages/picker/package.json +++ b/packages/picker/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/picker", - "version": "0.14.4", + "version": "0.14.5", "publishConfig": { "access": "public" }, @@ -49,13 +49,13 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/button": "^0.23.2", + "@iliad-ui/button": "^0.24.0", "@iliad-ui/icon": "^0.17.2", "@iliad-ui/icons-ui": "^0.13.2", "@iliad-ui/icons-workflow": "^0.13.2", - "@iliad-ui/menu": "^0.17.2", - "@iliad-ui/overlay": "^0.18.2", - "@iliad-ui/popover": "^0.16.4", + "@iliad-ui/menu": "^0.17.3", + "@iliad-ui/overlay": "^0.18.3", + "@iliad-ui/popover": "^0.16.5", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/popover/CHANGELOG.md b/packages/popover/CHANGELOG.md index 94f4a22c57c..c9ea1509732 100644 --- a/packages/popover/CHANGELOG.md +++ b/packages/popover/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.16.4...@iliad-ui/popover@0.16.5) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/popover + ## [0.16.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.16.3...@iliad-ui/popover@0.16.4) (2022-09-13) **Note:** Version bump only for package @iliad-ui/popover diff --git a/packages/popover/package.json b/packages/popover/package.json index bcd451f59b3..e2ec48f3fd9 100644 --- a/packages/popover/package.json +++ b/packages/popover/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/popover", - "version": "0.16.4", + "version": "0.16.5", "publishConfig": { "access": "public" }, @@ -47,8 +47,8 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/icons-editor": "^0.11.0", - "@iliad-ui/overlay": "^0.18.2", + "@iliad-ui/icons-editor": "^0.12.0", + "@iliad-ui/overlay": "^0.18.3", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index a0cf8a65819..4a8bcb7196b 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.20.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.20.3...@iliad-ui/react@0.20.4) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/react + ## [0.20.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.20.2...@iliad-ui/react@0.20.3) (2022-10-26) **Note:** Version bump only for package @iliad-ui/react diff --git a/packages/react/package.json b/packages/react/package.json index 3e32d40c681..01c1b6b30f2 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/react", - "version": "0.20.3", + "version": "0.20.4", "publishConfig": { "access": "public" }, @@ -42,8 +42,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/bundle": "^0.27.6", - "@iliad-ui/icons": "^0.22.0", + "@iliad-ui/bundle": "^0.27.7", + "@iliad-ui/icons": "^0.23.0", "@lit-labs/react": "^1.0.1", "@types/lodash": "^4.14.175", "@types/react": "^17.0.30", diff --git a/packages/search/CHANGELOG.md b/packages/search/CHANGELOG.md index 49e1275f7dd..6e460e9e988 100644 --- a/packages/search/CHANGELOG.md +++ b/packages/search/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/search@0.13.2...@iliad-ui/search@0.13.3) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/search + ## [0.13.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/search@0.13.1...@iliad-ui/search@0.13.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/search diff --git a/packages/search/package.json b/packages/search/package.json index 2f11e442992..ae3109ba80c 100644 --- a/packages/search/package.json +++ b/packages/search/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/search", - "version": "0.13.2", + "version": "0.13.3", "publishConfig": { "access": "public" }, @@ -45,7 +45,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/button": "^0.23.2", + "@iliad-ui/button": "^0.24.0", "@iliad-ui/icon": "^0.17.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/textfield": "^0.15.2", diff --git a/packages/slider/CHANGELOG.md b/packages/slider/CHANGELOG.md index 82abbc9de06..221859271cd 100644 --- a/packages/slider/CHANGELOG.md +++ b/packages/slider/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/slider@0.18.2...@iliad-ui/slider@0.18.3) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/slider + ## [0.18.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/slider@0.18.1...@iliad-ui/slider@0.18.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/slider diff --git a/packages/slider/package.json b/packages/slider/package.json index e4dae388817..1d399448b17 100644 --- a/packages/slider/package.json +++ b/packages/slider/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/slider", - "version": "0.18.2", + "version": "0.18.3", "publishConfig": { "access": "public" }, @@ -50,9 +50,9 @@ "dependencies": { "@iliad-ui/base": "^0.12.2", "@iliad-ui/field-label": "^0.10.2", - "@iliad-ui/number-field": "^0.9.2", + "@iliad-ui/number-field": "^0.9.3", "@iliad-ui/shared": "^0.19.2", - "@iliad-ui/theme": "^0.15.2", + "@iliad-ui/theme": "^0.15.3", "@internationalized/number": "^3.0.0", "tslib": "^2.0.0" }, diff --git a/packages/split-button/CHANGELOG.md b/packages/split-button/CHANGELOG.md index 86c1a0aeb74..33ec058cbb2 100644 --- a/packages/split-button/CHANGELOG.md +++ b/packages/split-button/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.10.4...@iliad-ui/split-button@0.10.5) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/split-button + ## [0.10.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.10.3...@iliad-ui/split-button@0.10.4) (2022-09-13) **Note:** Version bump only for package @iliad-ui/split-button diff --git a/packages/split-button/package.json b/packages/split-button/package.json index 41c03bc4d7f..cd63e67c9aa 100644 --- a/packages/split-button/package.json +++ b/packages/split-button/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/split-button", - "version": "0.10.4", + "version": "0.10.5", "publishConfig": { "access": "public" }, @@ -47,12 +47,12 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/button": "^0.23.2", + "@iliad-ui/button": "^0.24.0", "@iliad-ui/icon": "^0.17.2", "@iliad-ui/icons-ui": "^0.13.2", "@iliad-ui/icons-workflow": "^0.13.2", - "@iliad-ui/overlay": "^0.18.2", - "@iliad-ui/picker": "^0.14.4", + "@iliad-ui/overlay": "^0.18.3", + "@iliad-ui/picker": "^0.14.5", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/styles/CHANGELOG.md b/packages/styles/CHANGELOG.md index 1805fdda2a7..025e41d1699 100644 --- a/packages/styles/CHANGELOG.md +++ b/packages/styles/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.18.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/styles@0.17.2...@iliad-ui/styles@0.18.0) (2022-11-11) + +### Features + +- checkbox 样式更改 ([34b6303](https://github.com/gaoding-inc/iliad-ui/commit/34b6303b9c3b543a8f2f33a8cac57554cf947f2e)) +- cta 样式颜色修改 ([a5a6c57](https://github.com/gaoding-inc/iliad-ui/commit/a5a6c57d724798f341b9efca3b4eb15f19a3777c)) + ## [0.17.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/styles@0.17.1...@iliad-ui/styles@0.17.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/styles diff --git a/packages/styles/package.json b/packages/styles/package.json index cc96d71dd50..ae4d2144d15 100644 --- a/packages/styles/package.json +++ b/packages/styles/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/styles", - "version": "0.17.2", + "version": "0.18.0", "publishConfig": { "access": "public" }, diff --git a/packages/switch/CHANGELOG.md b/packages/switch/CHANGELOG.md index 0d82e3fa07c..b236b3b87a3 100644 --- a/packages/switch/CHANGELOG.md +++ b/packages/switch/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/switch@0.12.2...@iliad-ui/switch@0.12.3) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/switch + ## [0.12.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/switch@0.12.1...@iliad-ui/switch@0.12.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/switch diff --git a/packages/switch/package.json b/packages/switch/package.json index 6471d7aefdc..4470e68b514 100644 --- a/packages/switch/package.json +++ b/packages/switch/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/switch", - "version": "0.12.2", + "version": "0.12.3", "publishConfig": { "access": "public" }, @@ -45,7 +45,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/checkbox": "^0.15.2", + "@iliad-ui/checkbox": "^0.16.0", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/tags/CHANGELOG.md b/packages/tags/CHANGELOG.md index 5c2b8860ced..70327a27170 100644 --- a/packages/tags/CHANGELOG.md +++ b/packages/tags/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tags@0.13.2...@iliad-ui/tags@0.13.3) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/tags + ## [0.13.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tags@0.13.1...@iliad-ui/tags@0.13.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/tags diff --git a/packages/tags/package.json b/packages/tags/package.json index 1f66dcad220..bfaa3ed6361 100644 --- a/packages/tags/package.json +++ b/packages/tags/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/tags", - "version": "0.13.2", + "version": "0.13.3", "publishConfig": { "access": "public" }, @@ -47,7 +47,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/button": "^0.23.2", + "@iliad-ui/button": "^0.24.0", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/theme/CHANGELOG.md b/packages/theme/CHANGELOG.md index 89b2fba80a2..6ded730bdf5 100644 --- a/packages/theme/CHANGELOG.md +++ b/packages/theme/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.15.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/theme@0.15.2...@iliad-ui/theme@0.15.3) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/theme + ## [0.15.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/theme@0.15.1...@iliad-ui/theme@0.15.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/theme diff --git a/packages/theme/package.json b/packages/theme/package.json index beab49a9ef7..b23d44e7c7d 100644 --- a/packages/theme/package.json +++ b/packages/theme/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/theme", - "version": "0.15.2", + "version": "0.15.3", "publishConfig": { "access": "public" }, @@ -57,7 +57,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/styles": "^0.17.2", + "@iliad-ui/styles": "^0.18.0", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/packages/toast/CHANGELOG.md b/packages/toast/CHANGELOG.md index b595cfca741..96c104a22bf 100644 --- a/packages/toast/CHANGELOG.md +++ b/packages/toast/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.18.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/toast@0.18.2...@iliad-ui/toast@0.18.3) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/toast + ## [0.18.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/toast@0.17.1...@iliad-ui/toast@0.18.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/toast diff --git a/packages/toast/package.json b/packages/toast/package.json index 97fe27e2b22..5d1cf8876af 100644 --- a/packages/toast/package.json +++ b/packages/toast/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/toast", - "version": "0.18.2", + "version": "0.18.3", "publishConfig": { "access": "public" }, @@ -45,7 +45,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/button": "^0.23.2", + "@iliad-ui/button": "^0.24.0", "@iliad-ui/icon": "^0.17.2", "@iliad-ui/icons-workflow": "^0.13.2", "tslib": "^2.0.0" diff --git a/packages/tooltip/CHANGELOG.md b/packages/tooltip/CHANGELOG.md index dbc5bf44bfa..810183fd706 100644 --- a/packages/tooltip/CHANGELOG.md +++ b/packages/tooltip/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.13.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tooltip@0.13.2...@iliad-ui/tooltip@0.13.3) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/tooltip + ## [0.13.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/tooltip@0.13.1...@iliad-ui/tooltip@0.13.2) (2022-08-05) **Note:** Version bump only for package @iliad-ui/tooltip diff --git a/packages/tooltip/package.json b/packages/tooltip/package.json index 36c227ab95d..69c1616a17f 100644 --- a/packages/tooltip/package.json +++ b/packages/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/tooltip", - "version": "0.13.2", + "version": "0.13.3", "publishConfig": { "access": "public" }, @@ -45,7 +45,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/overlay": "^0.18.2", + "@iliad-ui/overlay": "^0.18.3", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/projects/documentation/CHANGELOG.md b/projects/documentation/CHANGELOG.md index ef84fa3fac5..fce1f75dffe 100644 --- a/projects/documentation/CHANGELOG.md +++ b/projects/documentation/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.38](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.37...documentation@0.1.38) (2022-11-11) + +**Note:** Version bump only for package documentation + ## [0.1.37](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.36...documentation@0.1.37) (2022-10-26) **Note:** Version bump only for package documentation diff --git a/projects/documentation/package.json b/projects/documentation/package.json index 3a1be3ba6e8..28b04c364e3 100644 --- a/projects/documentation/package.json +++ b/projects/documentation/package.json @@ -1,6 +1,6 @@ { "name": "documentation", - "version": "0.1.37", + "version": "0.1.38", "private": true, "description": "The documentation site for Spectrum Web Components", "license": "Apache-2.0", @@ -25,7 +25,7 @@ "watch:serve": "wds --root-dir=dist --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.6", + "@iliad-ui/bundle": "^0.27.7", "@spectrum-css/table": "^4.0.5" }, "devDependencies": { diff --git a/projects/example-project-rollup/CHANGELOG.md b/projects/example-project-rollup/CHANGELOG.md index aec97486c65..8aa76c711a6 100644 --- a/projects/example-project-rollup/CHANGELOG.md +++ b/projects/example-project-rollup/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.7](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.6...example-project-rollup@0.5.7) (2022-11-11) + +**Note:** Version bump only for package example-project-rollup + ## [0.5.6](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.5...example-project-rollup@0.5.6) (2022-10-26) **Note:** Version bump only for package example-project-rollup diff --git a/projects/example-project-rollup/package.json b/projects/example-project-rollup/package.json index 3211eaaa4fe..611cec37a08 100644 --- a/projects/example-project-rollup/package.json +++ b/projects/example-project-rollup/package.json @@ -1,6 +1,6 @@ { "name": "example-project-rollup", - "version": "0.5.6", + "version": "0.5.7", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with rollup.", "license": "Apache-2.0", @@ -20,14 +20,14 @@ "tsc:watch": "tsc --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.6", - "@iliad-ui/button": "^0.23.2", + "@iliad-ui/bundle": "^0.27.7", + "@iliad-ui/button": "^0.24.0", "@iliad-ui/field-label": "^0.10.2", - "@iliad-ui/icons": "^0.22.0", - "@iliad-ui/icons-editor": "^0.11.0", - "@iliad-ui/menu": "^0.17.2", - "@iliad-ui/picker": "^0.14.4", - "@iliad-ui/styles": "^0.17.2" + "@iliad-ui/icons": "^0.23.0", + "@iliad-ui/icons-editor": "^0.12.0", + "@iliad-ui/menu": "^0.17.3", + "@iliad-ui/picker": "^0.14.5", + "@iliad-ui/styles": "^0.18.0" }, "devDependencies": { "@open-wc/building-rollup": "^1.6.3", diff --git a/projects/example-project-webpack/CHANGELOG.md b/projects/example-project-webpack/CHANGELOG.md index 6fef2361a26..2781955c37c 100644 --- a/projects/example-project-webpack/CHANGELOG.md +++ b/projects/example-project-webpack/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.6.7](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.6...example-project-webpack@1.6.7) (2022-11-11) + +**Note:** Version bump only for package example-project-webpack + ## [1.6.6](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.5...example-project-webpack@1.6.6) (2022-10-26) **Note:** Version bump only for package example-project-webpack diff --git a/projects/example-project-webpack/package.json b/projects/example-project-webpack/package.json index 2fb253e1faf..0e48ce59b79 100644 --- a/projects/example-project-webpack/package.json +++ b/projects/example-project-webpack/package.json @@ -1,6 +1,6 @@ { "name": "example-project-webpack", - "version": "1.6.6", + "version": "1.6.7", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with webpack.", "license": "Apache-2.0", @@ -12,12 +12,12 @@ "serve": "webpack-dev-server" }, "dependencies": { - "@iliad-ui/button": "^0.23.2", + "@iliad-ui/button": "^0.24.0", "@iliad-ui/field-label": "^0.10.2", - "@iliad-ui/menu": "^0.17.2", - "@iliad-ui/picker": "^0.14.4", - "@iliad-ui/react": "^0.20.3", - "@iliad-ui/styles": "^0.17.2", + "@iliad-ui/menu": "^0.17.3", + "@iliad-ui/picker": "^0.14.5", + "@iliad-ui/react": "^0.20.4", + "@iliad-ui/styles": "^0.18.0", "lit": "^2.0.0" }, "devDependencies": { diff --git a/projects/story-decorator/CHANGELOG.md b/projects/story-decorator/CHANGELOG.md index 8b40634d562..9ece650c6f0 100644 --- a/projects/story-decorator/CHANGELOG.md +++ b/projects/story-decorator/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.10.4...@iliad-ui/story-decorator@0.10.5) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/story-decorator + ## [0.10.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.10.3...@iliad-ui/story-decorator@0.10.4) (2022-09-13) **Note:** Version bump only for package @iliad-ui/story-decorator diff --git a/projects/story-decorator/package.json b/projects/story-decorator/package.json index b4b6beed103..b544dddf93e 100644 --- a/projects/story-decorator/package.json +++ b/projects/story-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/story-decorator", - "version": "0.10.4", + "version": "0.10.5", "publishConfig": { "access": "public" }, @@ -47,11 +47,11 @@ "dependencies": { "@iliad-ui/base": "^0.12.2", "@iliad-ui/field-label": "^0.10.2", - "@iliad-ui/menu": "^0.17.2", - "@iliad-ui/overlay": "^0.18.2", - "@iliad-ui/picker": "^0.14.4", - "@iliad-ui/switch": "^0.12.2", - "@iliad-ui/theme": "^0.15.2", + "@iliad-ui/menu": "^0.17.3", + "@iliad-ui/overlay": "^0.18.3", + "@iliad-ui/picker": "^0.14.5", + "@iliad-ui/switch": "^0.12.3", + "@iliad-ui/theme": "^0.15.3", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", diff --git a/projects/vrt-compare/CHANGELOG.md b/projects/vrt-compare/CHANGELOG.md index a107ee0e298..7f4366ae207 100644 --- a/projects/vrt-compare/CHANGELOG.md +++ b/projects/vrt-compare/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.7.4...@iliad-ui/vrt-compare@0.7.5) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/vrt-compare + ## [0.7.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.7.3...@iliad-ui/vrt-compare@0.7.4) (2022-09-13) **Note:** Version bump only for package @iliad-ui/vrt-compare diff --git a/projects/vrt-compare/package.json b/projects/vrt-compare/package.json index e2e55385933..a23f6dc8f70 100644 --- a/projects/vrt-compare/package.json +++ b/projects/vrt-compare/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/vrt-compare", - "version": "0.7.4", + "version": "0.7.5", "publishConfig": { "access": "public" }, @@ -44,14 +44,14 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-bar": "^0.7.4", - "@iliad-ui/action-button": "^0.14.2", - "@iliad-ui/action-group": "^0.12.2", + "@iliad-ui/action-bar": "^0.7.5", + "@iliad-ui/action-button": "^0.14.3", + "@iliad-ui/action-group": "^0.12.3", "@iliad-ui/base": "^0.12.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/shared": "^0.19.2", "@iliad-ui/split-view": "^0.9.2", - "@iliad-ui/styles": "^0.17.2", + "@iliad-ui/styles": "^0.18.0", "tslib": "^2.0.0" }, "types": "./src/index.d.ts", From b89170e81f6bcb0c4aec2a1bbd895d71c0f4769c Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Fri, 11 Nov 2022 10:43:53 +0800 Subject: [PATCH 21/28] =?UTF-8?q?fix:=20icons=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/icons/src/icons-editor.svg.ts | 2 +- scripts/process-icons.js | 14 ++++++++++++-- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/packages/icons/src/icons-editor.svg.ts b/packages/icons/src/icons-editor.svg.ts index 3995238e278..091fed5251c 100644 --- a/packages/icons/src/icons-editor.svg.ts +++ b/packages/icons/src/icons-editor.svg.ts @@ -11,4 +11,4 @@ OF ANY KIND, either express or implied. See the License for the specific languag governing permissions and limitations under the License. */ import { svg } from '@iliad-ui/base'; -export default svg``; +export default svg``; diff --git a/scripts/process-icons.js b/scripts/process-icons.js index 7c9e6dc1550..c003d38d45d 100644 --- a/scripts/process-icons.js +++ b/scripts/process-icons.js @@ -18,6 +18,14 @@ import { fileURLToPath } from 'url'; const __dirname = path.dirname(fileURLToPath(import.meta.url)); +// 对svg内容做一些处理 +const handleSvgContent = (content) => { + // 去除svg的fill内容 + const reg = /fill=".+?"/gi; + content = content.replace(reg, ''); + return content; +}; + const processIcon = (srcPath, fd, scaleWidth, scaleHeight) => { // get icon name from filename const iconName = path.basename(srcPath, path.extname(srcPath)); @@ -34,10 +42,12 @@ const processIcon = (srcPath, fd, scaleWidth, scaleHeight) => { return; } const [, viewBox, svgContent] = match; - // append the content to the target file handle + // append the content to the target file handle , remove fill info fs.writeSync( fd, - `${svgContent}` + `${handleSvgContent( + svgContent + )}` ); }; From 74aec82c31a228428b722aaa21ffa71f10d0f4c1 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Fri, 11 Nov 2022 10:47:50 +0800 Subject: [PATCH 22/28] chore: release new versions - @iliad-ui/bundle@0.27.8 - @iliad-ui/icons@0.23.1 - @iliad-ui/react@0.20.5 - documentation@0.1.39 - example-project-rollup@0.5.8 - example-project-webpack@1.6.8 --- packages/bundle/CHANGELOG.md | 4 ++++ packages/bundle/package.json | 4 ++-- packages/icons/CHANGELOG.md | 6 ++++++ packages/icons/package.json | 2 +- packages/react/CHANGELOG.md | 4 ++++ packages/react/package.json | 6 +++--- projects/documentation/CHANGELOG.md | 4 ++++ projects/documentation/package.json | 4 ++-- projects/example-project-rollup/CHANGELOG.md | 4 ++++ projects/example-project-rollup/package.json | 6 +++--- projects/example-project-webpack/CHANGELOG.md | 4 ++++ projects/example-project-webpack/package.json | 4 ++-- 12 files changed, 39 insertions(+), 13 deletions(-) diff --git a/packages/bundle/CHANGELOG.md b/packages/bundle/CHANGELOG.md index 863e8f18820..bc513b9bda9 100644 --- a/packages/bundle/CHANGELOG.md +++ b/packages/bundle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.27.8](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.7...@iliad-ui/bundle@0.27.8) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/bundle + ## [0.27.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.6...@iliad-ui/bundle@0.27.7) (2022-11-11) **Note:** Version bump only for package @iliad-ui/bundle diff --git a/packages/bundle/package.json b/packages/bundle/package.json index ee2d2fd4d0a..8fd1aed5178 100644 --- a/packages/bundle/package.json +++ b/packages/bundle/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/bundle", - "version": "0.27.7", + "version": "0.27.8", "publishConfig": { "access": "public" }, @@ -71,7 +71,7 @@ "@iliad-ui/field-group": "^0.8.2", "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/icon": "^0.17.2", - "@iliad-ui/icons": "^0.23.0", + "@iliad-ui/icons": "^0.23.1", "@iliad-ui/icons-editor": "^0.12.0", "@iliad-ui/icons-ui": "^0.13.2", "@iliad-ui/icons-workflow": "^0.13.2", diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index 261b45c3396..ffe64cdfdd1 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.23.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.23.0...@iliad-ui/icons@0.23.1) (2022-11-11) + +### Bug Fixes + +- icons 更新 ([b89170e](https://github.com/gaoding-inc/iliad-ui/commit/b89170e81f6bcb0c4aec2a1bbd895d71c0f4769c)) + # [0.23.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.22.0...@iliad-ui/icons@0.23.0) (2022-11-11) ### Features diff --git a/packages/icons/package.json b/packages/icons/package.json index 80da96429e6..45761edf0de 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons", - "version": "0.23.0", + "version": "0.23.1", "publishConfig": { "access": "public" }, diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 4a8bcb7196b..a7375868624 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.20.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.20.4...@iliad-ui/react@0.20.5) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/react + ## [0.20.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.20.3...@iliad-ui/react@0.20.4) (2022-11-11) **Note:** Version bump only for package @iliad-ui/react diff --git a/packages/react/package.json b/packages/react/package.json index 01c1b6b30f2..98834340ae0 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/react", - "version": "0.20.4", + "version": "0.20.5", "publishConfig": { "access": "public" }, @@ -42,8 +42,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/bundle": "^0.27.7", - "@iliad-ui/icons": "^0.23.0", + "@iliad-ui/bundle": "^0.27.8", + "@iliad-ui/icons": "^0.23.1", "@lit-labs/react": "^1.0.1", "@types/lodash": "^4.14.175", "@types/react": "^17.0.30", diff --git a/projects/documentation/CHANGELOG.md b/projects/documentation/CHANGELOG.md index fce1f75dffe..f2c2c622d46 100644 --- a/projects/documentation/CHANGELOG.md +++ b/projects/documentation/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.39](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.38...documentation@0.1.39) (2022-11-11) + +**Note:** Version bump only for package documentation + ## [0.1.38](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.37...documentation@0.1.38) (2022-11-11) **Note:** Version bump only for package documentation diff --git a/projects/documentation/package.json b/projects/documentation/package.json index 28b04c364e3..c17c8dfd19d 100644 --- a/projects/documentation/package.json +++ b/projects/documentation/package.json @@ -1,6 +1,6 @@ { "name": "documentation", - "version": "0.1.38", + "version": "0.1.39", "private": true, "description": "The documentation site for Spectrum Web Components", "license": "Apache-2.0", @@ -25,7 +25,7 @@ "watch:serve": "wds --root-dir=dist --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.7", + "@iliad-ui/bundle": "^0.27.8", "@spectrum-css/table": "^4.0.5" }, "devDependencies": { diff --git a/projects/example-project-rollup/CHANGELOG.md b/projects/example-project-rollup/CHANGELOG.md index 8aa76c711a6..2d68f91cf83 100644 --- a/projects/example-project-rollup/CHANGELOG.md +++ b/projects/example-project-rollup/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.8](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.7...example-project-rollup@0.5.8) (2022-11-11) + +**Note:** Version bump only for package example-project-rollup + ## [0.5.7](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.6...example-project-rollup@0.5.7) (2022-11-11) **Note:** Version bump only for package example-project-rollup diff --git a/projects/example-project-rollup/package.json b/projects/example-project-rollup/package.json index 611cec37a08..a15eef8d911 100644 --- a/projects/example-project-rollup/package.json +++ b/projects/example-project-rollup/package.json @@ -1,6 +1,6 @@ { "name": "example-project-rollup", - "version": "0.5.7", + "version": "0.5.8", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with rollup.", "license": "Apache-2.0", @@ -20,10 +20,10 @@ "tsc:watch": "tsc --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.7", + "@iliad-ui/bundle": "^0.27.8", "@iliad-ui/button": "^0.24.0", "@iliad-ui/field-label": "^0.10.2", - "@iliad-ui/icons": "^0.23.0", + "@iliad-ui/icons": "^0.23.1", "@iliad-ui/icons-editor": "^0.12.0", "@iliad-ui/menu": "^0.17.3", "@iliad-ui/picker": "^0.14.5", diff --git a/projects/example-project-webpack/CHANGELOG.md b/projects/example-project-webpack/CHANGELOG.md index 2781955c37c..c9f593ac17e 100644 --- a/projects/example-project-webpack/CHANGELOG.md +++ b/projects/example-project-webpack/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.6.8](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.7...example-project-webpack@1.6.8) (2022-11-11) + +**Note:** Version bump only for package example-project-webpack + ## [1.6.7](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.6...example-project-webpack@1.6.7) (2022-11-11) **Note:** Version bump only for package example-project-webpack diff --git a/projects/example-project-webpack/package.json b/projects/example-project-webpack/package.json index 0e48ce59b79..43283eb36b4 100644 --- a/projects/example-project-webpack/package.json +++ b/projects/example-project-webpack/package.json @@ -1,6 +1,6 @@ { "name": "example-project-webpack", - "version": "1.6.7", + "version": "1.6.8", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with webpack.", "license": "Apache-2.0", @@ -16,7 +16,7 @@ "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/menu": "^0.17.3", "@iliad-ui/picker": "^0.14.5", - "@iliad-ui/react": "^0.20.4", + "@iliad-ui/react": "^0.20.5", "@iliad-ui/styles": "^0.18.0", "lit": "^2.0.0" }, From 497e9f1d958059b1138121a5515334e36cce87e5 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Fri, 11 Nov 2022 18:01:33 +0800 Subject: [PATCH 23/28] feat: icons update --- packages/icons-editor/bin/fetchSVG.js | 2 +- packages/icons-editor/bin/template.js | 5 +- packages/icons-editor/src/data.json | 506 ++++++++++-------- .../icons-editor/src/icons/FigmaStatic.ts | 13 +- .../icons-editor/src/icons/SketchStatic.ts | 9 +- packages/icons/src/icons-editor.svg.ts | 2 +- scripts/process-icons.js | 6 +- 7 files changed, 314 insertions(+), 229 deletions(-) diff --git a/packages/icons-editor/bin/fetchSVG.js b/packages/icons-editor/bin/fetchSVG.js index 1c11734492c..9e19e2f1e08 100644 --- a/packages/icons-editor/bin/fetchSVG.js +++ b/packages/icons-editor/bin/fetchSVG.js @@ -142,7 +142,7 @@ client return ensureDir( join(options.outputDir, options.format) ).then(() => { - const content = handleSvgContent(response.body); + const content = response.body.toString(); writeFile( join( options.outputDir, diff --git a/packages/icons-editor/bin/template.js b/packages/icons-editor/bin/template.js index 319c860129e..f58d326e0a6 100644 --- a/packages/icons-editor/bin/template.js +++ b/packages/icons-editor/bin/template.js @@ -50,6 +50,9 @@ const handleSvgContent = (content) => { content = content.replace(reg, ''); return content; }; +const handleSvgFilter = (name, content) => { + return name.includes('Static') ? content : handleSvgContent(content); +}; // 生成到src/elements 输出为icon元素 export const generateIconComponentSvgTemplate = (icon) => { @@ -58,7 +61,7 @@ export const generateIconComponentSvgTemplate = (icon) => { import {tag as html, TemplateResult} from '../custom-tag.js'; export {setCustomTemplateLiteralTag} from '../custom-tag.js'; export const ${name}Icon = (): string | TemplateResult => { - return html\`${handleSvgContent(svg)}\`; + return html\`${handleSvgFilter(name, svg)}\`; } `; return `${CopyHeader}${content}`; diff --git a/packages/icons-editor/src/data.json b/packages/icons-editor/src/data.json index ebcfcd4d41e..d13c54da1ac 100644 --- a/packages/icons-editor/src/data.json +++ b/packages/icons-editor/src/data.json @@ -7,7 +7,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8137d5d0-e0cb-47cb-946a-7554e871daab" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/92b4b9f2-951e-4a98-9802-bd32c185483a" }, "25:28": { "name": "label_y", @@ -17,7 +17,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3a14eba2-08ae-4116-b07f-1d5cc6bd686f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/65b132e8-0202-4168-88f9-1413a595226d" }, "382:510": { "name": "label_z", @@ -27,7 +27,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7888acc7-b178-4d15-afce-9a33836c20f1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8ff5a3ec-0580-4d73-8c88-243aa5dd6057" }, "91:383": { "name": "label_d", @@ -37,7 +37,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8cb11f8a-a61b-4169-bdee-1793820e582e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5563823d-2182-4428-98cd-b85ab4ee4cb2" }, "91:392": { "name": "label_v", @@ -47,7 +47,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/664c35a0-e04e-4b7b-b296-4507d082429f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/31b90c65-babd-44ec-be0a-7d71f132a4f5" }, "92:328": { "name": "label_c", @@ -57,7 +57,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/167288fd-aa1c-450b-879a-c0a3047903ca" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9dfc2f58-bfc7-4ba6-a3aa-b4a7a73ce8c1" }, "97:478": { "name": "label_g", @@ -67,7 +67,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/16d6557c-0d8f-4c7d-b4c8-c6d183961147" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/61e75b43-c36e-4064-8e0a-35141ecf2873" }, "964:933": { "name": "unit", @@ -77,7 +77,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a6ea5115-4e35-44ac-8862-3e43616ad83f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/34a4adf1-81a9-41d0-9492-3aac2447d077" }, "8:8": { "name": "command", @@ -87,7 +87,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/71efb857-55c6-43d8-869c-5936723291ed" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6e71fbf7-c2f2-43ab-90f3-52fb33c0d855" }, "97:457": { "name": "shift", @@ -97,7 +97,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ccf77ffb-fda7-4759-a0ec-212b3cb9a069" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0e038f2c-8cf0-4720-8015-b74fb5b181a8" }, "350:2642": { "name": "option", @@ -107,7 +107,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a018db65-23e4-45a7-8d27-2615e7930069" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8b5b7cf5-25a2-4755-93f4-827f243e83c3" }, "9:30": { "name": "backspace", @@ -117,7 +117,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d21d4530-93da-4c41-9ac6-0523d3f17a56" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f83ab58f-345c-44a0-aaf6-5a702029ebeb" }, "326:546": { "name": "label_openbracket", @@ -127,7 +127,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f9ce4f76-28b4-43de-8184-f7c580219c80" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2cdd8aef-f422-43d9-8cf9-fd9a20b3d57d" }, "326:536": { "name": "label_closebracket", @@ -137,7 +137,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/81b69894-7d31-49ec-9273-4c31d9ef0d21" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/dfb23612-e354-4170-9e23-6a927686c323" }, "0:36": { "name": "format_left", @@ -147,7 +147,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e1343fc0-f027-494c-af86-55be16ff95fe" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8abc048c-6f31-4962-90b7-ad7ba0525a5a" }, "0:38": { "name": "format_center", @@ -157,7 +157,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/039475cd-1e29-463b-b67f-dd11b11a16db" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8e0b65f9-8dc2-44b0-a412-4e01b7718eed" }, "0:40": { "name": "format_right", @@ -167,7 +167,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5161b281-baf3-41c6-b110-c5a162c248cd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/91f22347-e6b2-4f34-947f-58c76e29a6a2" }, "0:34": { "name": "format_justified", @@ -177,7 +177,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e31e1fcf-40a6-4a69-92f0-cf7c0eac852a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d84cc45d-d0db-4920-867a-fb7b62bce3ff" }, "1054:953": { "name": "format_align_top", @@ -187,7 +187,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/36c9a046-6929-4ff0-878c-a177dd05684f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c11477c1-5791-48d9-83da-87c8a00ff178" }, "1054:982": { "name": "format_align_medium", @@ -197,7 +197,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/42644b38-68a9-44f4-a043-5ab6f9de6ed8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/16ea3f3e-0bf8-4ced-836b-935a3e8ea627" }, "1054:894": { "name": "format_align_bottom", @@ -207,7 +207,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7b7fbe7b-49a3-4949-a8e8-adbb665fb3ae" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3fabbb05-9bfe-4167-9d49-776cf4ab09ea" }, "0:28": { "name": "format_pacing-lines", @@ -217,7 +217,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8fbd56fe-f7cc-4771-a1ed-f214c32cc898" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8f8ab0f1-c83d-4b18-a4a9-63ee0ea6b649" }, "0:32": { "name": "format_spacing-letter", @@ -227,7 +227,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/687b9be7-8cae-4417-b518-dcd3091bc737" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/673bb3a4-7a3d-4065-8436-855299ad7c8c" }, "0:20": { "name": "text_underline", @@ -237,7 +237,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9cc327fe-bce6-45f5-a6f7-28d36c632d1b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9cf33c98-6878-488d-b7f9-ef4a1c047825" }, "0:18": { "name": "text_italy", @@ -247,7 +247,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/95b4a893-3c5b-4db2-96b8-5b5de072ef51" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/96a219b6-497d-4d5a-884c-e32662c5ade3" }, "0:24": { "name": "text_deleteline", @@ -257,7 +257,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0be18e55-92d2-49f9-9715-a500a77e1d5a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5dca32e4-c03d-40a6-8dd1-03333202797e" }, "0:13": { "name": "text_bold", @@ -267,7 +267,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/60fb26b8-490e-4681-ba69-7cc6d96db050" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/edbf5562-306f-4110-b841-cb9465fa296b" }, "20:109": { "name": "format_list_bulleted", @@ -277,7 +277,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/21c485b7-0541-49c3-8bca-a17f6a723cd7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ef159154-093b-44ca-8fe9-d5f90a6c22cb" }, "20:113": { "name": "format_list_numbered", @@ -287,7 +287,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/30f12a8b-9181-413d-8c9b-55a9fc6313d4" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a6d079f8-399f-4374-9a7f-2e988b50c5b5" }, "20:131": { "name": "format_indent_decrease", @@ -297,7 +297,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/249c670d-4d36-4c1f-8b0e-cc41dfc12f8e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f0a3f240-19da-4df4-8616-690e44e74af5" }, "20:135": { "name": "format_indent_increase", @@ -307,7 +307,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b274bb9d-c1fd-4e25-be72-0f2f608e0ac8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ce691144-6be2-490e-8bf3-d8aff08c3a82" }, "0:8": { "name": "text_scale", @@ -317,7 +317,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2c90ceae-cf46-47eb-a648-3d9ef2a455a1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6dafeeae-c021-4d81-8e65-963a4d0f1007" }, "323:573": { "name": "display", @@ -327,7 +327,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c2b25728-f852-42bd-8311-3e9c4b66fe57" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1c65bdec-74fd-40c3-9757-68358e973d02" }, "20:105": { "name": "none", @@ -337,7 +337,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/36573c65-b6b9-4c63-ade0-e37ed4a9f807" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7fa00a0e-35aa-41fb-bba9-3727bc14d430" }, "36:87": { "name": "add", @@ -347,7 +347,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c3501c47-f830-4bb3-83c5-140a4efc0a36" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bfc58aa3-9865-4bc8-a7b6-d57b54793be9" }, "24:49": { "name": "remove", @@ -357,7 +357,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ac903dc8-500c-4e42-8dba-25f1059715e6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e01e6c19-fd1f-4143-bf8d-2bdd0f56f6ee" }, "4:32": { "name": "close", @@ -367,7 +367,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0f0b813c-d16b-4967-8275-43e13a963141" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c92385a7-7cd1-4924-bab4-b15b4b47a6b6" }, "51:236": { "name": "done", @@ -377,7 +377,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a34db8a7-ef9c-44d2-853f-e43754ea43c8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d10c1563-cd79-4df4-8ecd-f553b46388ca" }, "902:739": { "name": "clear", @@ -387,7 +387,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5effe160-a828-4bd9-9703-ab4907a81772" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5221e57a-5406-4680-9499-29d34a69673f" }, "36:102": { "name": "menu", @@ -397,7 +397,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ff2d459a-f60c-4a4d-a5eb-9e56fec58791" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b6a979c3-5950-48db-aa37-d1fdc59f492c" }, "36:98": { "name": "pages", @@ -407,7 +407,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e0dcc1ef-ae2f-417a-a259-267a5b40f187" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/874f1f27-37d4-4f8e-b65c-f9c487435251" }, "36:93": { "name": "layers", @@ -417,7 +417,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7f35ef1c-49bc-4f44-9220-f53de10d9f06" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5cd6f887-aacb-4e86-a655-c59e1919df06" }, "36:88": { "name": "theme", @@ -427,7 +427,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7c23d082-68cd-4416-ac3e-302bb967d032" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d0c86134-7758-47aa-ad10-d1d8a1902560" }, "10:9": { "name": "home", @@ -437,7 +437,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/07f96596-93b6-41d2-87e7-8dd719a5ffd4" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/22888fe4-3480-4978-8b6c-6afa0708dffd" }, "36:106": { "name": "desktop", @@ -447,7 +447,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9a8e21a0-e58d-4cf8-8289-f305b88d5cd9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8ddbad36-0d85-4e99-95c7-5285e4eaac4b" }, "36:110": { "name": "tablet_mac", @@ -457,7 +457,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6094174b-7a04-446a-8c02-11ac0df01373" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c411cc2d-adc5-440a-bbb8-983f2f29a83d" }, "36:114": { "name": "smartphone", @@ -467,7 +467,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d8f26c43-9695-4570-ac9c-8188ea51d2ce" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/11c9578a-8602-4b50-a5c5-0c28205b2e18" }, "37:203": { "name": "tune", @@ -477,7 +477,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4a1ad6b1-c8d8-4919-9ac4-043b44e52251" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6fda2630-fa4e-4faf-951a-6ad39c1563dc" }, "36:132": { "name": "undo", @@ -487,7 +487,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a4921b71-0a74-489e-a405-b41d930b0a89" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/67de4cd8-80fa-4c07-b685-e762a6d55f3f" }, "36:131": { "name": "redo", @@ -497,7 +497,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5dc2c194-8161-48f9-8658-793502a4046e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b3738bf3-bc5c-43a6-80f1-2e539e19d8de" }, "932:766": { "name": "open_in_new", @@ -507,87 +507,87 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7d2b456b-b5dc-4f09-995a-2fc5560b0e74" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d60547c6-d6b5-4a3c-ab6a-c2143fcf5061" }, "510:619": { - "name": "easeOutQuad", + "name": "easeout_quad", "id": "510:619", "key": "89fa82130d75ebce58a7b7a86d6d89063c797802", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ca526672-6b24-40cb-9fae-ace9ffb7ca1c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/dff2a90f-b91e-44bf-9c89-035a35712aaa" }, "510:650": { - "name": "easeInQuad", + "name": "easein_quad", "id": "510:650", "key": "5441967edbc7160c54430a82f52599769b2d66a7", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/345d16cb-0ac4-45a0-a17b-1d805e0a4799" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/178e603d-5e00-4272-9197-57cf5c9a95ec" }, "510:672": { - "name": "easeOutCubic", + "name": "easeout_cubic", "id": "510:672", "key": "f65c62f1e7dcd13fc16e568f77e3bbb46bfb40b9", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/11634231-b9ff-4c68-b1a4-dac637ff6fa8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/22fc14ed-306a-4728-9508-c32ef5412b5f" }, "510:694": { - "name": "easeInCubic", + "name": "easein_cubic", "id": "510:694", "key": "a9a8118d5218206591586aa3038cfbea74e8e656", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/93296c4a-0c93-46c4-9321-21597ba9d7d8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/38957437-003c-4c4b-817c-1efe667239f0" }, "510:732": { - "name": "easeInOutCubic", + "name": "easeinout_cubic", "id": "510:732", "key": "b11e46234bfad9b4525086f9141b0665a75255e4", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a519a697-346b-4d1e-b461-f397caa5358e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5b4eb9fb-7ed2-403f-9caf-f352465834cf" }, "510:754": { - "name": "easeOutBack", + "name": "easeout_back", "id": "510:754", "key": "877be934d6842c758f0e022d395c0aadbe5f5ca9", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6c78203c-7dcc-4edd-bcd8-263c7a42fa39" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7b851102-8e11-4247-be42-8a6c98bcab07" }, "510:776": { - "name": "easeOutElastic", + "name": "easeout_elastic", "id": "510:776", "key": "6b9ae8119102c85b3dd6dd5d394db45da3d4467e", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5c25e273-952d-4ca7-bbfd-7ef1d268b39e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2fce52b8-0b33-4b95-9c3a-69b9c41332fb" }, "510:798": { - "name": "easeOutBounce", + "name": "easeout_bounce", "id": "510:798", "key": "ad73c0dcd7dd51181d58dde5b15eb8be4392ebc4", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f2ab7ad0-61e0-4491-a757-f7c537fe5ae1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a75afd6b-2674-44dc-8620-13a163f4d4ba" }, "511:661": { "name": "linear", @@ -597,7 +597,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/26ab5e35-c7dd-4c8b-b673-2021c6567702" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9036b13b-f4c1-4af6-bc87-65fdbccf4f65" }, "37:214": { "name": "text", @@ -607,7 +607,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a6b30c52-6aaa-458a-b90e-04d5b736c1bb" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8629eee8-b6af-4ec6-807e-a0418e81a043" }, "37:219": { "name": "paragraph", @@ -617,7 +617,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/934010ca-be8f-452b-a6f7-cbcefad97631" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bd75909f-fda2-46ad-9e5e-29865aa9b30c" }, "37:223": { "name": "image", @@ -627,7 +627,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8f6caa94-2867-4fa9-bd82-b0612110e820" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/426f1584-4eed-4e0b-aec4-60b67d098936" }, "37:227": { "name": "container", @@ -637,7 +637,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1011ffb6-c420-4f50-ae85-efaefb08b821" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/44e1b425-9188-4b86-a601-07ff29a8ef4b" }, "320:472": { "name": "layout_vert", @@ -647,7 +647,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a7b97045-6e09-49a7-8d41-c465b265b4c2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/92e56b9d-cf05-467a-824f-2b8114b5dd47" }, "320:517": { "name": "layout_horz", @@ -657,7 +657,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/79c77d93-72f0-4e75-bf5a-95e072c87a35" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/15933a33-c83e-41b9-9f7d-dd59ede7f9c9" }, "958:894": { "name": "layout_sliding", @@ -667,7 +667,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/24f42d24-eeb8-494b-902a-2e389d67d89d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d172dd3a-ae63-4602-994e-277b43118f22" }, "959:958": { "name": "layout_wrap", @@ -677,7 +677,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9bad7f32-b1a1-43ad-8d4a-29bbb6bf4524" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/da6b4042-09b8-472a-9b9a-72bab7b070b3" }, "967:1005": { "name": "layout_pageturn", @@ -687,7 +687,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0d871fc0-7c28-4447-962b-10bb2cc587d5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fc433b7f-782b-4411-9607-990910eb525f" }, "959:999": { "name": "section", @@ -697,7 +697,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/59a1ce46-f4f7-4ab2-a3dd-024575e46d41" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/12f36932-caad-4c2a-b603-f133ee907fe0" }, "439:552": { "name": "materiel", @@ -707,7 +707,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/06fc1f48-df78-4d0b-8fb0-8ac2cec046dd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fc9569d9-12ad-4631-9845-faabf6ac1d9a" }, "25:97": { "name": "arrow_left", @@ -717,7 +717,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bc7f59dc-e1a0-459e-b959-476a91ebf3c7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/454ed391-6043-4633-b918-776cc2667806" }, "25:117": { "name": "arrow_right", @@ -727,7 +727,27 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/58a3f166-5d53-46b9-8d50-ee03f0fad714" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0ce2ffb1-47e2-42f1-b055-1328c03f3491" + }, + "37:207": { + "name": "arrow_down_small", + "id": "37:207", + "key": "31a7f68da5aa6bb3b41778fa9f2942b40a1123a6", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3bbc0d53-5780-40d9-bd6e-83009ac9f3f7" + }, + "54:237": { + "name": "arrow_right_small", + "id": "54:237", + "key": "c174f1a1ac15ff9d0c91731ba7821e19cc5331a6", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f8c8b6d5-9b5a-4939-9e88-b4fac6503c6b" }, "83:353": { "name": "direction_down", @@ -737,7 +757,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0163d9cc-e529-49fe-8720-bbfa3ab92e2e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/af914322-cd11-40ef-a85b-cc7d711c0624" }, "83:360": { "name": "direction_right", @@ -747,7 +767,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/59303fce-ef3d-47c3-9b15-89b56d71ca4c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9742a20f-b667-42da-9556-c0918eec01cb" }, "91:351": { "name": "direction_up", @@ -757,7 +777,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/24a9cb9f-8b82-4723-b7b8-2f003b37cbd9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/db11c080-b2b4-4e3a-afbc-4094afa8070c" }, "91:358": { "name": "direction_left", @@ -767,27 +787,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/770f3ab0-2282-4ba9-87eb-47467bc3e672" - }, - "37:207": { - "name": "arrow_down", - "id": "37:207", - "key": "31a7f68da5aa6bb3b41778fa9f2942b40a1123a6", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2371912b-91bd-4993-a220-0b1432b725d8" - }, - "54:237": { - "name": "arrow_right", - "id": "54:237", - "key": "c174f1a1ac15ff9d0c91731ba7821e19cc5331a6", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b57dd2d8-0cd2-4ab8-9447-0d9c8b7f2fb8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1de0df56-39ad-4915-a397-ed878d1a8d7f" }, "30:21": { "name": "slider_invisible", @@ -797,7 +797,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2f78515d-8947-46f2-8b40-2e99fc264324" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f5fb9a05-b513-4098-9840-41413d74aebc" }, "406:539": { "name": "arrow_triangle", @@ -807,7 +807,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5fa15071-a8a7-4de5-8501-fe2b2c694d25" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b8b3c6ef-6c31-4b1c-8844-9d613bc93950" }, "60:260": { "name": "page_header", @@ -817,7 +817,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/de0c3070-c17a-457e-a9e7-1f013cbe4174" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/aa5a1d40-2844-454a-9b7b-5db3dff1fa0b" }, "65:509": { "name": "page_footer", @@ -827,7 +827,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/82913c96-a2ea-49c1-b09c-784eec1f3d42" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d1c8f01d-eb97-4e30-a8ae-a4bd02ef548b" }, "65:522": { "name": "video", @@ -837,7 +837,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/288e8bcb-058c-42e2-ab25-a147d2d46a25" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/879d5faf-04a3-406a-8674-d87a0415d68d" }, "65:550": { "name": "star", @@ -847,7 +847,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b3e4aa5a-142d-482f-bff3-3b7e8adb1209" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/324138d4-7a34-4155-986f-c066d642bdec" }, "66:335": { "name": "file_folder", @@ -857,7 +857,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/801eeae1-2cbb-4a7b-9330-1c60bb60a8af" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/235836a3-70b0-47b8-bc87-457dbc6d7da0" }, "65:583": { "name": "contacts", @@ -867,7 +867,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6f7c779e-ca4b-4537-86c6-2a930b5a13c6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/153122e7-cdb5-4f2b-b1d3-98a69a13cf55" }, "52:739": { "name": "rotate_left", @@ -877,7 +877,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b8f9b444-d3c3-4e94-ae3c-f9e2e785cf78" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/33733dd0-bd8d-4b07-a549-4e053ca439f4" }, "314:443": { "name": "width_fixed", @@ -887,7 +887,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c459a644-202f-44af-8772-a3809b975fed" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/89596501-c0a0-4d01-a7cd-504680c24cda" }, "314:416": { "name": "width_fill", @@ -897,7 +897,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/facbfbbb-7e1c-45aa-aab3-2396bea39330" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4a742923-7a95-44cd-a1b9-91677fd1d2be" }, "314:531": { "name": "width_hug", @@ -907,7 +907,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/31f49ba4-f531-4be9-b557-dfb5d4218cbd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4c826819-956d-4793-9218-eb85f7f105ef" }, "314:518": { "name": "height_fixed", @@ -917,7 +917,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3990b3a1-21c4-443a-ad3b-53d832a8e5e0" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/59af8b88-7d07-4e02-bb2d-37903dd8c1a1" }, "314:571": { "name": "height_fill", @@ -927,7 +927,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b1ba5837-14f0-4834-ab1f-bd840d6e51ec" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3db2e0ba-14ff-4542-b6dd-e8e41a5d8987" }, "314:581": { "name": "height_hug", @@ -937,7 +937,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/74148ba8-b5cc-4545-b5f8-418e2a1d2375" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2d63debe-24c6-4df8-adb1-edd2e7dabdfa" }, "10:22": { "name": "settings", @@ -947,7 +947,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8875fbf1-9d7b-4f95-a0f8-aca9ffe6bc71" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d8c3b5ea-f9c4-4752-91bf-b17a79ea0b47" }, "922:781": { "name": "import", @@ -957,7 +957,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/eff7feb2-2a60-4866-82de-16c512290e27" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/eebd842d-f1fb-4539-a9dc-422c737ac5d6" }, "10:117": { "name": "link", @@ -967,7 +967,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/af175788-ea55-4a87-b496-508900d8651d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/03ccd722-1ef1-4916-b16d-34afc52f58fa" }, "21:46": { "name": "locked", @@ -977,7 +977,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bf4d4704-43c0-41ac-a834-63f3e373b91a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/98c82150-ffe0-4db4-b6d9-35104707cce1" }, "21:54": { "name": "unlocked", @@ -987,7 +987,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/02bdd17e-c9cf-46d6-9f80-9d33e7fe5c21" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/24d21f3e-fe38-4071-9dff-ac3e274ee3f6" }, "24:56": { "name": "eye", @@ -997,7 +997,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/da520acf-363a-42c6-bf1b-bf580e26d209" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9bc02042-0938-4013-9f67-84917bb194d3" }, "52:645": { "name": "eye_off", @@ -1007,7 +1007,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2c5a508e-bbe0-41de-85ba-bb2820aafa74" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8ddf53a7-5b0f-4c1c-b12d-223c90790d41" }, "65:301": { "name": "eye_display", @@ -1017,7 +1017,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e1c5197f-3053-4f18-bdaa-f218ab355672" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/82dbefdd-8650-4cac-8ca0-56bf691a1be3" }, "301:399": { "name": "play", @@ -1027,7 +1027,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4a16a1fe-5587-413a-93e1-a73836ee2def" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/32b3530d-359a-4474-afe0-c6e28cf4011a" }, "410:565": { "name": "stop", @@ -1037,7 +1037,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3ceba735-1d15-438d-b506-af40b295a2d3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8acba7a3-c8ee-4010-9388-7453853e9ece" }, "304:400": { "name": "edit", @@ -1047,7 +1047,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f8d8b559-97ff-4b7a-ac64-324885529760" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2d939254-f840-4f27-ad44-51649e91545a" }, "25:161": { "name": "colorpicker", @@ -1057,7 +1057,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cfdb90d0-86de-4c25-99db-d3fa9526f7d6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f6b1110d-f63a-4c9d-bb49-446117a8cfa1" }, "52:720": { "name": "animation", @@ -1067,7 +1067,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0ac117af-4db2-4c3c-94d1-447f3b13c3b1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/14a7d7a0-4629-4420-b777-277798bf0a62" }, "65:412": { "name": "crop", @@ -1077,7 +1077,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4ec107cc-6185-4dad-87a3-07bb40c80de8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ddedf09c-1c2d-415c-b345-34bc5c811ad1" }, "65:417": { "name": "focus", @@ -1087,7 +1087,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bdd01e7d-216f-4b4b-a5a1-0bf8bb738662" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/10f72526-7d59-4cd3-8964-920bbcf4f5c2" }, "52:592": { "name": "open_full", @@ -1097,7 +1097,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7f4c7978-792e-4264-b79d-656320b36149" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4cb15966-4830-42bd-b791-f1629deb75ba" }, "52:682": { "name": "close_full", @@ -1107,7 +1107,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c89130c1-fb90-46de-b358-60f7ffb0eab2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f46b18d6-3214-44df-b575-3761fff919a7" }, "409:535": { "name": "direction_center", @@ -1117,7 +1117,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8359cbd3-06c3-46a2-9b3e-ff119d0f8a03" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e227fef1-460b-4f6f-bfe5-6120c7048254" }, "18:14": { "name": "align_left", @@ -1127,7 +1127,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a47229b5-7ced-4542-9856-ef7347f78a4a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/945cea55-c933-4bb0-8223-21a1542a981b" }, "18:83": { "name": "align_horiz_centers", @@ -1137,7 +1137,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c7922230-87fe-4d6c-bb80-5ee7a8d2d9d3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3c4a3716-a9fa-4769-be37-d3461dbf9c3f" }, "18:94": { "name": "align_right", @@ -1147,7 +1147,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fa564897-7962-4997-b92c-db380715a5c5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9f6abab7-2ce2-477b-b926-a9a90b17a344" }, "18:92": { "name": "align_top", @@ -1157,7 +1157,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f58948bc-1382-4cef-a7ee-29d4bd7d1104" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/78cf9ee2-39c6-4332-b845-1f73cd2b6dc3" }, "18:90": { "name": "align_vert_centers", @@ -1167,7 +1167,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/24a996ab-d56e-4f33-8fd9-a523f0dd9e58" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/99d6173e-643e-4d6d-bd8d-3e7885977a3c" }, "18:88": { "name": "align_bottom", @@ -1177,7 +1177,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5b018adf-a6b1-4680-97d7-9d19efc3ed0f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/53c2bbc3-9357-4faf-afc0-675985ba2d2d" }, "18:86": { "name": "align_arrange_horiz", @@ -1187,7 +1187,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/69018dbc-0d1b-49ef-817a-aef41c454ffa" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/dbebbd00-5a63-44b2-87e0-c80fb02aaa97" }, "18:84": { "name": "align_arrange_vert", @@ -1197,7 +1197,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ecb79f79-d164-4628-89d3-bfe542c89949" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/93cb7152-0254-4fc8-8fc4-87753cc33f5f" }, "315:701": { "name": "vert_left", @@ -1207,7 +1207,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fe0afef1-1763-4528-91d6-406aba7df0fe" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b2290e3f-16e7-4004-ab25-e78cd9b80acd" }, "315:719": { "name": "vert_centers", @@ -1217,7 +1217,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/19807b56-0a64-4261-ba44-cb4ab80149b7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/34e2080c-bc7c-4f22-b17f-d959530f708a" }, "315:717": { "name": "vert_right", @@ -1227,7 +1227,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/40ebe1ba-50b2-42a6-b555-7e26af0eaff1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/35fb97d6-7cdf-4c3c-8321-f4ced4259233" }, "315:715": { "name": "horiz_top", @@ -1237,7 +1237,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a6f4c4bb-73a5-4f8c-a39c-f185fb204169" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/23f84632-481f-4368-b590-4c3b5e0e834d" }, "315:713": { "name": "horiz_centers", @@ -1247,7 +1247,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bc3189d7-1508-4ae2-896a-04550b177bb3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/82112f72-e3e2-4b37-9f4d-a7fc4b664b99" }, "315:711": { "name": "horiz_bottom", @@ -1257,17 +1257,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/47654178-9a2d-4f59-8b12-d781197da1d5" - }, - "815:839": { - "name": "crop", - "id": "815:839", - "key": "ed16aa7ab5175c21487b9f0e8a383826efb149de", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 28, - "height": 28, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/744fbbae-7ce4-4773-92d9-d940f3aa23c3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/46dbc285-95ff-45dc-8857-e87602aba1cd" }, "815:863": { "name": "file_outline", @@ -1277,7 +1267,7 @@ "description": "add, create, new, plus, +", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b9fe85f2-4a90-442c-b3b6-ae3c3b7dc9cb" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8e3ee6b5-6487-4fbc-91f4-61cd14519d4c" }, "815:869": { "name": "grid_outline", @@ -1287,7 +1277,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b05474d7-82af-4d48-b758-0fbbe3d858d6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c38c0b34-cc19-4f1c-8c66-db0c349b4792" }, "10:122": { "name": "help", @@ -1297,7 +1287,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d6118792-f62b-4006-bef9-8be8121ae0bd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fd4dff36-0e38-4e2c-96e3-89702a1035f5" }, "65:330": { "name": "check", @@ -1307,7 +1297,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/579bf8db-c7df-4a8b-8bae-4a62b843d510" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e0225bc3-a870-472f-ae23-7ac0e7a4c26d" }, "65:350": { "name": "info", @@ -1317,7 +1307,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fc9a3189-5e2d-409e-bd4f-83e994becb0c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2497d245-dc20-4d54-8859-5dbd0d1968b2" }, "65:373": { "name": "alert", @@ -1327,7 +1317,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9c7b5be2-30c0-45ed-9c5c-fe8645bf3ee8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a07005eb-04fc-43f8-bb9b-4a54261cc22d" }, "108:396": { "name": "help_fill", @@ -1337,7 +1327,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b2689e1b-ba77-4e7b-8342-4cfce4a20b90" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c8f06be8-b15f-4791-9e78-a5b76c281600" }, "109:392": { "name": "check_fill", @@ -1347,7 +1337,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3a3669f8-352d-45b3-b40c-d395218a495d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d095bada-5f67-4cd1-b4ec-44d5892a8a46" }, "109:393": { "name": "info_fill", @@ -1357,7 +1347,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/94d48d7f-097f-4e19-8ea2-05d9e9e92925" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cd35fe96-fd91-40a2-a2f8-f1ed589d8c09" }, "109:394": { "name": "alert_fill", @@ -1367,7 +1357,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/beaf81a3-6dc5-41f9-9a2e-f2b8da50eb1c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3f907fe5-1cf5-4bf8-8f72-5f7d268a0149" }, "818:886": { "name": "radio_button_unchecked", @@ -1377,7 +1367,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a5feee62-10c5-4a85-8891-52a5e4c5b773" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5c0755cc-85cd-4f6b-a956-20377e86db8b" }, "23:18": { "name": "corner", @@ -1387,7 +1377,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ee4087ef-2ca9-4401-80de-819471c0f02a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ec2ce400-de0c-4972-aec0-eb20c33bf131" }, "37:29": { "name": "corner_radius_top_left", @@ -1397,7 +1387,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8516c695-2382-429f-870c-830731fbddcd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/17453c8a-df47-4f35-bc70-619a3285b530" }, "37:35": { "name": "corner_radius_top_right", @@ -1407,7 +1397,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f503c7b0-7912-4a98-ae14-89a6109adf77" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/37fc6ca4-0bc5-408c-aed3-ad8e86dde6cd" }, "37:45": { "name": "corner_radius_bottom_left", @@ -1417,7 +1407,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/27c142c0-537a-45e0-9342-efdc76a05a7a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/424e06c8-a68e-4215-925b-15f09eec1d2d" }, "37:40": { "name": "corner_radius_bottom_right", @@ -1427,7 +1417,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2839375b-3f21-49a6-a488-6b756abc6312" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b82e7c33-3227-452b-80d7-acd4511e3bd0" }, "953:784": { "name": "wrap", @@ -1437,7 +1427,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d860a92b-a295-4320-830f-668b54a7a5bc" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6fb75af9-1411-4f9c-9cb1-6c8df0252ea2" }, "955:831": { "name": "padding_independent", @@ -1447,7 +1437,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/69706d42-95f2-4a84-8903-b5e62835a134" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7e76e1f3-71f9-4777-9deb-379f414c7b5b" }, "966:980": { "name": "padding", @@ -1457,7 +1447,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7527c370-40c7-4004-8642-4e7fadf352ac" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a51d7d77-1eb4-411e-aca3-dd04fbfc3659" }, "954:847": { "name": "padding_left", @@ -1467,7 +1457,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5fc61340-6dd7-4353-9ae7-d82bb9e425a9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7eb7bfb3-832a-4ceb-b987-4755eddfe430" }, "963:891": { "name": "padding_right", @@ -1477,7 +1467,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0b17ae1d-b89d-4eae-8111-9608be688272" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b18aaf32-13b9-43be-ba85-925662688d7d" }, "954:884": { "name": "padding_top", @@ -1487,7 +1477,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/59b50e5e-3c83-4ec5-be38-f80ac54c8b8f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6ee291dd-e0c7-492a-9796-a18b1eb609a8" }, "963:917": { "name": "padding_bottom", @@ -1497,7 +1487,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f81ac92c-2fb8-486b-9253-d84f57559d19" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4e18aa06-6466-4816-b769-7efdd927e612" }, "954:1003": { "name": "spacing_horiz", @@ -1507,7 +1497,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f84ea29e-6b4d-4ae3-9221-a2c7a657316e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/74f709d1-2555-432c-84e4-47746997e9b9" }, "954:970": { "name": "spacing_vert", @@ -1517,7 +1507,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/aae72482-15d8-4eda-a320-88d0690f221f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7f5613e2-a809-4e0a-8507-811984fe4d88" }, "786:735": { "name": "style", @@ -1527,7 +1517,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8c476414-fbd5-41de-895b-4c584b65b3c6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1094f262-9195-4f0d-b6bb-ed5b7349576d" }, "25:171": { "name": "more_horiz", @@ -1537,7 +1527,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6276ab5d-4da8-472b-81c9-0b8039f66415" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cd8db1a1-1f47-4d3c-9083-817301cb5b77" }, "24:18": { "name": "drag_handle", @@ -1547,7 +1537,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cc1341fc-54c4-487c-ba20-ceccf1ddcd9e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4d8b8670-e7d7-4984-92cc-9ac6971d0b0c" }, "10:102": { "name": "stop_circle", @@ -1557,7 +1547,17 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9db471a7-bd99-435b-8837-e12480e3016a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/787a2247-c888-48eb-9332-eb84354aaa47" + }, + "1317:954": { + "name": "publish", + "id": "1317:954", + "key": "ee608c6a85dfc86bc16079a851ff49aed58b8a62", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/dd49f86c-7af2-4af4-bd7a-19ab8635c2f4" }, "10:109": { "name": "data_barchart", @@ -1567,7 +1567,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8c224d58-2a1d-4260-bf13-b4e0bd535e78" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/514d476e-8272-43ed-8d2a-09440358b5eb" }, "935:783": { "name": "figma", @@ -1577,7 +1577,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9db2bfed-d5a4-484f-9713-32ade7e0d3b7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ea76b0a0-5bc2-4b48-908f-5d92002dd1aa" }, "402:510": { "name": "time", @@ -1587,7 +1587,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/150e4ee3-bf78-4880-a849-4d3c6a52745e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e8be3a76-8a56-4fec-912c-afea41f037d3" }, "924:780": { "name": "global", @@ -1597,7 +1597,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/09607cfe-6ccd-4517-a7d9-69e23aa14790" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/77880aa0-ae35-4a33-bfeb-374592476fa1" }, "1060:928": { "name": "earth", @@ -1607,7 +1607,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/208c5b78-fe97-4a1c-ad1d-38114f72d5fd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/40533f13-32e4-4c2b-bcd5-6bfeb6624a73" }, "43:204": { "name": "cloud_off", @@ -1617,7 +1617,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/738cd225-5dc8-4b0c-af73-1d9015cf1cda" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9989c384-7758-4ec2-8ff8-f1c60f89e764" }, "43:210": { "name": "cloud_done", @@ -1627,7 +1627,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/af04f1a1-acc3-4d57-a7ac-6db506041242" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/08a0a728-6901-411c-bf2e-e32bbe226e50" }, "919:758": { "name": "loading", @@ -1637,7 +1637,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7486e39c-fe07-4132-88af-eb12a3a99d0c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c7c8bd2a-71eb-4388-985e-98fce84194ea" }, "922:764": { "name": "loading_white", @@ -1647,7 +1647,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/88b8e202-723f-4700-8f58-2304e21435b1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/535df9b7-69dc-4030-8cd5-27a83ebe97a7" }, "490:565": { "name": "fixed", @@ -1657,17 +1657,17 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d9f1dfa0-974a-486d-8a71-c2fbe316b1d8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b25f0be2-f7a1-4be8-bf65-7f1b83d5e404" }, "1065:957": { - "name": "focus", + "name": " locate", "id": "1065:957", "key": "f0340fbc30e410c5f6ef30744bb1ece3b1e20563", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e8cf8f6e-a08c-4a9d-9622-274298849a80" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2b1f27b2-8e61-4e2e-9278-f8dfec431f61" }, "43:217": { "name": "qr_code", @@ -1677,7 +1677,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/60382f3f-be9e-49ef-942a-ed7d203a4157" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2474b2b8-7d3c-41ea-8f81-b87a60780ee6" }, "512:726": { "name": "mouse_Hover", @@ -1687,7 +1687,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/914ecab2-4e34-4b3f-91a3-e4794714806f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d9a71be4-cabe-4ec0-9b42-58d9017b838f" }, "403:511": { "name": "mouse_Click", @@ -1697,7 +1697,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a033c761-75a4-468c-a6ea-337bff9844bd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1d0ec89a-e04a-4a6b-89db-2d97efd8b35f" }, "513:781": { "name": "scroll", @@ -1707,7 +1707,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c21a29b4-0c7d-4fed-b66f-e7c1e41a9334" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b5c7b8d7-a2fd-449a-8a2e-6f0a5188ed27" }, "905:809": { "name": "event", @@ -1717,17 +1717,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/034dd767-c50f-4dff-ab1a-fbc6adaa94ce" - }, - "404:540": { - "name": "animation", - "id": "404:540", - "key": "9de9b9c9589dc53464534076a8c1441c05a2e6b4", - "file": "RTJwK4z4uVvkxsLo6Fd3Yi", - "description": "", - "width": 24, - "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e17cc1f7-067f-4114-8a62-b83dc7d3f455" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/459fc24b-1e01-4c85-b051-5d30bce5ffa2" }, "848:743": { "name": "trigger", @@ -1737,7 +1727,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c28a95d7-179f-4a7a-b272-8a4311585d7e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2abef82c-4d3d-4c62-885f-c179182b3031" }, "907:783": { "name": "effect", @@ -1747,7 +1737,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d7bd10e5-b167-4618-ab7b-a61dc5ffe258" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/aa5bf73d-5940-41c4-9078-04075208123e" }, "514:891": { "name": "move", @@ -1757,7 +1747,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d3583fe2-0a73-4d55-a628-aee315967501" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5b3eb140-6662-4c8f-8428-6c05885cee14" }, "514:901": { "name": "scale", @@ -1767,7 +1757,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d9d634d6-1831-4ce2-aed1-016dc7007fd6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fa31bc66-f931-4e7a-9238-03e42571257f" }, "514:911": { "name": "skew", @@ -1777,6 +1767,76 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/08cb3b71-a902-4345-a77e-92fec65ff736" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cf6acda8-ca1f-4527-a45c-57d625f71bf3" + }, + "404:540": { + "name": "inspire", + "id": "404:540", + "key": "9de9b9c9589dc53464534076a8c1441c05a2e6b4", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/aca9bfec-1d6d-4a94-9d54-59150fce502d" + }, + "1313:928": { + "name": "delete", + "id": "1313:928", + "key": "7ff45eb16f6c483452a1212dd660ec34656d7546", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d41a7fce-863e-4946-ace4-a1f2fc8ce8ec" + }, + "1314:992": { + "name": "share", + "id": "1314:992", + "key": "a951cac56fac6d0d2d80bba20e71000f42b82f56", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/de56986d-64e2-42bc-8c42-18eb60a72c01" + }, + "1314:1001": { + "name": "copy", + "id": "1314:1001", + "key": "efc885854849ad08a8e0ed68b3ea0e0a9a6d01e5", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/84d78e96-f67f-47bd-af7b-1535c9fae607" + }, + "1316:972": { + "name": "tag", + "id": "1316:972", + "key": "60008a04fd53aac82963938184be59662cfd5414", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/55b5ce3b-4a5a-4161-b8e4-fe029e0b6f7e" + }, + "1405:1016": { + "name": "figma_static", + "id": "1405:1016", + "key": "81556eb56610baa1fb2d8b7947feff567bbf2f80", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/eacdc2bc-5909-4891-a9fb-96a8ee94fb5b" + }, + "1405:1066": { + "name": "sketch_static", + "id": "1405:1066", + "key": "584da1e851c3c356bec3891691cc6c5847a2fc94", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/48e7a545-9c7a-40de-962d-8d0e9eb1a41c" } } diff --git a/packages/icons-editor/src/icons/FigmaStatic.ts b/packages/icons-editor/src/icons/FigmaStatic.ts index 173c0103fff..0ec17d84160 100644 --- a/packages/icons-editor/src/icons/FigmaStatic.ts +++ b/packages/icons-editor/src/icons/FigmaStatic.ts @@ -19,28 +19,39 @@ export const FigmaStaticIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > - + diff --git a/packages/icons-editor/src/icons/SketchStatic.ts b/packages/icons-editor/src/icons/SketchStatic.ts index 6e651bdfae8..4999865247c 100644 --- a/packages/icons-editor/src/icons/SketchStatic.ts +++ b/packages/icons-editor/src/icons/SketchStatic.ts @@ -19,31 +19,38 @@ export const SketchStaticIcon = (): string | TemplateResult => { width="24" height="24" viewBox="0 0 24 24" + fill="none" xmlns="http://www.w3.org/2000/svg" > - + diff --git a/packages/icons/src/icons-editor.svg.ts b/packages/icons/src/icons-editor.svg.ts index 091fed5251c..fcd41fad5f1 100644 --- a/packages/icons/src/icons-editor.svg.ts +++ b/packages/icons/src/icons-editor.svg.ts @@ -11,4 +11,4 @@ OF ANY KIND, either express or implied. See the License for the specific languag governing permissions and limitations under the License. */ import { svg } from '@iliad-ui/base'; -export default svg``; +export default svg``; diff --git a/scripts/process-icons.js b/scripts/process-icons.js index c003d38d45d..1a8dccc92f5 100644 --- a/scripts/process-icons.js +++ b/scripts/process-icons.js @@ -25,6 +25,9 @@ const handleSvgContent = (content) => { content = content.replace(reg, ''); return content; }; +const handleSvgFilter = (name, content) => { + return name.includes('Static') ? content : handleSvgContent(content); +}; const processIcon = (srcPath, fd, scaleWidth, scaleHeight) => { // get icon name from filename @@ -45,7 +48,8 @@ const processIcon = (srcPath, fd, scaleWidth, scaleHeight) => { // append the content to the target file handle , remove fill info fs.writeSync( fd, - `${handleSvgContent( + `${handleSvgFilter( + iconName, svgContent )}` ); From 18d37623c64c2cd8d32eaff590d3d59819204755 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Fri, 11 Nov 2022 18:18:51 +0800 Subject: [PATCH 24/28] chore: release new versions - @iliad-ui/action-bar@0.7.6 - @iliad-ui/action-menu@0.16.6 - @iliad-ui/bundle@0.27.9 - @iliad-ui/card@0.15.4 - @iliad-ui/checkbox@0.16.1 - @iliad-ui/icons-editor@0.13.0 - @iliad-ui/icons@0.24.0 - @iliad-ui/picker@0.14.6 - @iliad-ui/popover@0.16.6 - @iliad-ui/react@0.20.6 - @iliad-ui/split-button@0.10.6 - @iliad-ui/switch@0.12.4 - documentation@0.1.40 - example-project-rollup@0.5.9 - example-project-webpack@1.6.9 - @iliad-ui/story-decorator@0.10.6 - @iliad-ui/vrt-compare@0.7.6 --- packages/action-bar/CHANGELOG.md | 4 ++++ packages/action-bar/package.json | 4 ++-- packages/action-menu/CHANGELOG.md | 4 ++++ packages/action-menu/package.json | 4 ++-- packages/bundle/CHANGELOG.md | 4 ++++ packages/bundle/package.json | 22 +++++++++---------- packages/card/CHANGELOG.md | 4 ++++ packages/card/package.json | 4 ++-- packages/checkbox/CHANGELOG.md | 4 ++++ packages/checkbox/package.json | 4 ++-- packages/icons-editor/CHANGELOG.md | 6 +++++ packages/icons-editor/package.json | 2 +- packages/icons/CHANGELOG.md | 6 +++++ packages/icons/package.json | 2 +- packages/picker/CHANGELOG.md | 4 ++++ packages/picker/package.json | 4 ++-- packages/popover/CHANGELOG.md | 4 ++++ packages/popover/package.json | 4 ++-- packages/react/CHANGELOG.md | 4 ++++ packages/react/package.json | 6 ++--- packages/split-button/CHANGELOG.md | 4 ++++ packages/split-button/package.json | 4 ++-- packages/switch/CHANGELOG.md | 4 ++++ packages/switch/package.json | 4 ++-- projects/documentation/CHANGELOG.md | 4 ++++ projects/documentation/package.json | 4 ++-- projects/example-project-rollup/CHANGELOG.md | 4 ++++ projects/example-project-rollup/package.json | 10 ++++----- projects/example-project-webpack/CHANGELOG.md | 4 ++++ projects/example-project-webpack/package.json | 6 ++--- projects/story-decorator/CHANGELOG.md | 4 ++++ projects/story-decorator/package.json | 6 ++--- projects/vrt-compare/CHANGELOG.md | 4 ++++ projects/vrt-compare/package.json | 4 ++-- 34 files changed, 119 insertions(+), 47 deletions(-) diff --git a/packages/action-bar/CHANGELOG.md b/packages/action-bar/CHANGELOG.md index 4411304dcf2..6b3ba2cc012 100644 --- a/packages/action-bar/CHANGELOG.md +++ b/packages/action-bar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.7.5...@iliad-ui/action-bar@0.7.6) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/action-bar + ## [0.7.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.7.4...@iliad-ui/action-bar@0.7.5) (2022-11-11) **Note:** Version bump only for package @iliad-ui/action-bar diff --git a/packages/action-bar/package.json b/packages/action-bar/package.json index 2f668a8d3a5..efc73bde52c 100644 --- a/packages/action-bar/package.json +++ b/packages/action-bar/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-bar", - "version": "0.7.5", + "version": "0.7.6", "publishConfig": { "access": "public" }, @@ -45,7 +45,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/popover": "^0.16.5", + "@iliad-ui/popover": "^0.16.6", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/action-menu/CHANGELOG.md b/packages/action-menu/CHANGELOG.md index a30396ba341..3c44b659d88 100644 --- a/packages/action-menu/CHANGELOG.md +++ b/packages/action-menu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.16.5...@iliad-ui/action-menu@0.16.6) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/action-menu + ## [0.16.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.16.4...@iliad-ui/action-menu@0.16.5) (2022-11-11) **Note:** Version bump only for package @iliad-ui/action-menu diff --git a/packages/action-menu/package.json b/packages/action-menu/package.json index 7f237f0963f..f2d55b74f3c 100644 --- a/packages/action-menu/package.json +++ b/packages/action-menu/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-menu", - "version": "0.16.5", + "version": "0.16.6", "publishConfig": { "access": "public" }, @@ -51,7 +51,7 @@ "@iliad-ui/icon": "^0.17.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/menu": "^0.17.3", - "@iliad-ui/picker": "^0.14.5", + "@iliad-ui/picker": "^0.14.6", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/bundle/CHANGELOG.md b/packages/bundle/CHANGELOG.md index bc513b9bda9..4e58f1e0648 100644 --- a/packages/bundle/CHANGELOG.md +++ b/packages/bundle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.27.9](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.8...@iliad-ui/bundle@0.27.9) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/bundle + ## [0.27.8](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.7...@iliad-ui/bundle@0.27.8) (2022-11-11) **Note:** Version bump only for package @iliad-ui/bundle diff --git a/packages/bundle/package.json b/packages/bundle/package.json index 8fd1aed5178..72ebf319a08 100644 --- a/packages/bundle/package.json +++ b/packages/bundle/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/bundle", - "version": "0.27.8", + "version": "0.27.9", "publishConfig": { "access": "public" }, @@ -47,18 +47,18 @@ ], "dependencies": { "@iliad-ui/accordion": "^0.9.2", - "@iliad-ui/action-bar": "^0.7.5", + "@iliad-ui/action-bar": "^0.7.6", "@iliad-ui/action-button": "^0.14.3", "@iliad-ui/action-group": "^0.12.3", - "@iliad-ui/action-menu": "^0.16.5", + "@iliad-ui/action-menu": "^0.16.6", "@iliad-ui/asset": "^0.9.2", "@iliad-ui/avatar": "^0.14.2", "@iliad-ui/banner": "^0.13.2", "@iliad-ui/breadcrumb": "^0.2.2", "@iliad-ui/button": "^0.24.0", "@iliad-ui/button-group": "^0.11.2", - "@iliad-ui/card": "^0.15.3", - "@iliad-ui/checkbox": "^0.16.0", + "@iliad-ui/card": "^0.15.4", + "@iliad-ui/checkbox": "^0.16.1", "@iliad-ui/coachmark": "^0.11.2", "@iliad-ui/color-area": "^0.9.2", "@iliad-ui/color-handle": "^0.6.2", @@ -71,8 +71,8 @@ "@iliad-ui/field-group": "^0.8.2", "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/icon": "^0.17.2", - "@iliad-ui/icons": "^0.23.1", - "@iliad-ui/icons-editor": "^0.12.0", + "@iliad-ui/icons": "^0.24.0", + "@iliad-ui/icons-editor": "^0.13.0", "@iliad-ui/icons-ui": "^0.13.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/iconset": "^0.13.2", @@ -82,8 +82,8 @@ "@iliad-ui/meter": "^0.9.2", "@iliad-ui/number-field": "^0.9.3", "@iliad-ui/overlay": "^0.18.3", - "@iliad-ui/picker": "^0.14.5", - "@iliad-ui/popover": "^0.16.5", + "@iliad-ui/picker": "^0.14.6", + "@iliad-ui/popover": "^0.16.6", "@iliad-ui/progress-bar": "^0.8.2", "@iliad-ui/progress-circle": "^0.7.2", "@iliad-ui/quick-actions": "^0.9.2", @@ -91,10 +91,10 @@ "@iliad-ui/search": "^0.13.3", "@iliad-ui/sidenav": "^0.15.2", "@iliad-ui/slider": "^0.18.3", - "@iliad-ui/split-button": "^0.10.5", + "@iliad-ui/split-button": "^0.10.6", "@iliad-ui/split-view": "^0.9.2", "@iliad-ui/status-light": "^0.13.2", - "@iliad-ui/switch": "^0.12.3", + "@iliad-ui/switch": "^0.12.4", "@iliad-ui/tabs": "^0.13.2", "@iliad-ui/tags": "^0.13.3", "@iliad-ui/textfield": "^0.15.2", diff --git a/packages/card/CHANGELOG.md b/packages/card/CHANGELOG.md index 4968af7649a..38fd776f5e2 100644 --- a/packages/card/CHANGELOG.md +++ b/packages/card/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.15.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/card@0.15.3...@iliad-ui/card@0.15.4) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/card + ## [0.15.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/card@0.15.2...@iliad-ui/card@0.15.3) (2022-11-11) **Note:** Version bump only for package @iliad-ui/card diff --git a/packages/card/package.json b/packages/card/package.json index 6dd1ef08237..490c9b919e8 100644 --- a/packages/card/package.json +++ b/packages/card/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/card", - "version": "0.15.3", + "version": "0.15.4", "publishConfig": { "access": "public" }, @@ -46,7 +46,7 @@ "dependencies": { "@iliad-ui/asset": "^0.9.2", "@iliad-ui/base": "^0.12.2", - "@iliad-ui/checkbox": "^0.16.0", + "@iliad-ui/checkbox": "^0.16.1", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/quick-actions": "^0.9.2", "@iliad-ui/shared": "^0.19.2", diff --git a/packages/checkbox/CHANGELOG.md b/packages/checkbox/CHANGELOG.md index 90a345036ef..cc0b5ebd84b 100644 --- a/packages/checkbox/CHANGELOG.md +++ b/packages/checkbox/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/checkbox@0.16.0...@iliad-ui/checkbox@0.16.1) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/checkbox + # [0.16.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/checkbox@0.15.2...@iliad-ui/checkbox@0.16.0) (2022-11-11) ### Features diff --git a/packages/checkbox/package.json b/packages/checkbox/package.json index 67a2c16c622..83e87ec9ba5 100644 --- a/packages/checkbox/package.json +++ b/packages/checkbox/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/checkbox", - "version": "0.16.0", + "version": "0.16.1", "publishConfig": { "access": "public" }, @@ -46,7 +46,7 @@ "dependencies": { "@iliad-ui/base": "^0.12.2", "@iliad-ui/icon": "^0.17.2", - "@iliad-ui/icons-editor": "^0.12.0", + "@iliad-ui/icons-editor": "^0.13.0", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/icons-editor/CHANGELOG.md b/packages/icons-editor/CHANGELOG.md index 3f3f5c454f1..b0908840859 100644 --- a/packages/icons-editor/CHANGELOG.md +++ b/packages/icons-editor/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.13.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.12.0...@iliad-ui/icons-editor@0.13.0) (2022-11-11) + +### Features + +- icons update ([497e9f1](https://github.com/gaoding-inc/iliad-ui/commit/497e9f1d958059b1138121a5515334e36cce87e5)) + # [0.12.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.11.0...@iliad-ui/icons-editor@0.12.0) (2022-11-11) ### Features diff --git a/packages/icons-editor/package.json b/packages/icons-editor/package.json index cca0d70fd41..b937f2e8181 100644 --- a/packages/icons-editor/package.json +++ b/packages/icons-editor/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons-editor", - "version": "0.12.0", + "version": "0.13.0", "publishConfig": { "access": "public" }, diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index ffe64cdfdd1..22b9b4ebd0a 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.24.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.23.1...@iliad-ui/icons@0.24.0) (2022-11-11) + +### Features + +- icons update ([497e9f1](https://github.com/gaoding-inc/iliad-ui/commit/497e9f1d958059b1138121a5515334e36cce87e5)) + ## [0.23.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.23.0...@iliad-ui/icons@0.23.1) (2022-11-11) ### Bug Fixes diff --git a/packages/icons/package.json b/packages/icons/package.json index 45761edf0de..8f1023a9455 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons", - "version": "0.23.1", + "version": "0.24.0", "publishConfig": { "access": "public" }, diff --git a/packages/picker/CHANGELOG.md b/packages/picker/CHANGELOG.md index a776c18e793..1eaa121086e 100644 --- a/packages/picker/CHANGELOG.md +++ b/packages/picker/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.14.5...@iliad-ui/picker@0.14.6) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/picker + ## [0.14.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.14.4...@iliad-ui/picker@0.14.5) (2022-11-11) **Note:** Version bump only for package @iliad-ui/picker diff --git a/packages/picker/package.json b/packages/picker/package.json index 023c8f02954..d417042fcd5 100644 --- a/packages/picker/package.json +++ b/packages/picker/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/picker", - "version": "0.14.5", + "version": "0.14.6", "publishConfig": { "access": "public" }, @@ -55,7 +55,7 @@ "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/menu": "^0.17.3", "@iliad-ui/overlay": "^0.18.3", - "@iliad-ui/popover": "^0.16.5", + "@iliad-ui/popover": "^0.16.6", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/popover/CHANGELOG.md b/packages/popover/CHANGELOG.md index c9ea1509732..37a9f8079e1 100644 --- a/packages/popover/CHANGELOG.md +++ b/packages/popover/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.16.5...@iliad-ui/popover@0.16.6) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/popover + ## [0.16.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.16.4...@iliad-ui/popover@0.16.5) (2022-11-11) **Note:** Version bump only for package @iliad-ui/popover diff --git a/packages/popover/package.json b/packages/popover/package.json index e2ec48f3fd9..e5d8198885f 100644 --- a/packages/popover/package.json +++ b/packages/popover/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/popover", - "version": "0.16.5", + "version": "0.16.6", "publishConfig": { "access": "public" }, @@ -47,7 +47,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/icons-editor": "^0.12.0", + "@iliad-ui/icons-editor": "^0.13.0", "@iliad-ui/overlay": "^0.18.3", "tslib": "^2.0.0" }, diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index a7375868624..2b6f1b73f15 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.20.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.20.5...@iliad-ui/react@0.20.6) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/react + ## [0.20.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.20.4...@iliad-ui/react@0.20.5) (2022-11-11) **Note:** Version bump only for package @iliad-ui/react diff --git a/packages/react/package.json b/packages/react/package.json index 98834340ae0..2e036f7eca8 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/react", - "version": "0.20.5", + "version": "0.20.6", "publishConfig": { "access": "public" }, @@ -42,8 +42,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/bundle": "^0.27.8", - "@iliad-ui/icons": "^0.23.1", + "@iliad-ui/bundle": "^0.27.9", + "@iliad-ui/icons": "^0.24.0", "@lit-labs/react": "^1.0.1", "@types/lodash": "^4.14.175", "@types/react": "^17.0.30", diff --git a/packages/split-button/CHANGELOG.md b/packages/split-button/CHANGELOG.md index 33ec058cbb2..662f7632ac4 100644 --- a/packages/split-button/CHANGELOG.md +++ b/packages/split-button/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.10.5...@iliad-ui/split-button@0.10.6) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/split-button + ## [0.10.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.10.4...@iliad-ui/split-button@0.10.5) (2022-11-11) **Note:** Version bump only for package @iliad-ui/split-button diff --git a/packages/split-button/package.json b/packages/split-button/package.json index cd63e67c9aa..aacc131f67b 100644 --- a/packages/split-button/package.json +++ b/packages/split-button/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/split-button", - "version": "0.10.5", + "version": "0.10.6", "publishConfig": { "access": "public" }, @@ -52,7 +52,7 @@ "@iliad-ui/icons-ui": "^0.13.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/overlay": "^0.18.3", - "@iliad-ui/picker": "^0.14.5", + "@iliad-ui/picker": "^0.14.6", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/switch/CHANGELOG.md b/packages/switch/CHANGELOG.md index b236b3b87a3..35f5de06b94 100644 --- a/packages/switch/CHANGELOG.md +++ b/packages/switch/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/switch@0.12.3...@iliad-ui/switch@0.12.4) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/switch + ## [0.12.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/switch@0.12.2...@iliad-ui/switch@0.12.3) (2022-11-11) **Note:** Version bump only for package @iliad-ui/switch diff --git a/packages/switch/package.json b/packages/switch/package.json index 4470e68b514..82e522928c8 100644 --- a/packages/switch/package.json +++ b/packages/switch/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/switch", - "version": "0.12.3", + "version": "0.12.4", "publishConfig": { "access": "public" }, @@ -45,7 +45,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/checkbox": "^0.16.0", + "@iliad-ui/checkbox": "^0.16.1", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/projects/documentation/CHANGELOG.md b/projects/documentation/CHANGELOG.md index f2c2c622d46..c9a684be43e 100644 --- a/projects/documentation/CHANGELOG.md +++ b/projects/documentation/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.40](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.39...documentation@0.1.40) (2022-11-11) + +**Note:** Version bump only for package documentation + ## [0.1.39](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.38...documentation@0.1.39) (2022-11-11) **Note:** Version bump only for package documentation diff --git a/projects/documentation/package.json b/projects/documentation/package.json index c17c8dfd19d..bc585e9e61f 100644 --- a/projects/documentation/package.json +++ b/projects/documentation/package.json @@ -1,6 +1,6 @@ { "name": "documentation", - "version": "0.1.39", + "version": "0.1.40", "private": true, "description": "The documentation site for Spectrum Web Components", "license": "Apache-2.0", @@ -25,7 +25,7 @@ "watch:serve": "wds --root-dir=dist --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.8", + "@iliad-ui/bundle": "^0.27.9", "@spectrum-css/table": "^4.0.5" }, "devDependencies": { diff --git a/projects/example-project-rollup/CHANGELOG.md b/projects/example-project-rollup/CHANGELOG.md index 2d68f91cf83..39d8d99b7df 100644 --- a/projects/example-project-rollup/CHANGELOG.md +++ b/projects/example-project-rollup/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.9](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.8...example-project-rollup@0.5.9) (2022-11-11) + +**Note:** Version bump only for package example-project-rollup + ## [0.5.8](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.7...example-project-rollup@0.5.8) (2022-11-11) **Note:** Version bump only for package example-project-rollup diff --git a/projects/example-project-rollup/package.json b/projects/example-project-rollup/package.json index a15eef8d911..ed9eb275688 100644 --- a/projects/example-project-rollup/package.json +++ b/projects/example-project-rollup/package.json @@ -1,6 +1,6 @@ { "name": "example-project-rollup", - "version": "0.5.8", + "version": "0.5.9", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with rollup.", "license": "Apache-2.0", @@ -20,13 +20,13 @@ "tsc:watch": "tsc --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.8", + "@iliad-ui/bundle": "^0.27.9", "@iliad-ui/button": "^0.24.0", "@iliad-ui/field-label": "^0.10.2", - "@iliad-ui/icons": "^0.23.1", - "@iliad-ui/icons-editor": "^0.12.0", + "@iliad-ui/icons": "^0.24.0", + "@iliad-ui/icons-editor": "^0.13.0", "@iliad-ui/menu": "^0.17.3", - "@iliad-ui/picker": "^0.14.5", + "@iliad-ui/picker": "^0.14.6", "@iliad-ui/styles": "^0.18.0" }, "devDependencies": { diff --git a/projects/example-project-webpack/CHANGELOG.md b/projects/example-project-webpack/CHANGELOG.md index c9f593ac17e..09ecac5a85a 100644 --- a/projects/example-project-webpack/CHANGELOG.md +++ b/projects/example-project-webpack/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.6.9](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.8...example-project-webpack@1.6.9) (2022-11-11) + +**Note:** Version bump only for package example-project-webpack + ## [1.6.8](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.7...example-project-webpack@1.6.8) (2022-11-11) **Note:** Version bump only for package example-project-webpack diff --git a/projects/example-project-webpack/package.json b/projects/example-project-webpack/package.json index 43283eb36b4..aa4559818c3 100644 --- a/projects/example-project-webpack/package.json +++ b/projects/example-project-webpack/package.json @@ -1,6 +1,6 @@ { "name": "example-project-webpack", - "version": "1.6.8", + "version": "1.6.9", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with webpack.", "license": "Apache-2.0", @@ -15,8 +15,8 @@ "@iliad-ui/button": "^0.24.0", "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/menu": "^0.17.3", - "@iliad-ui/picker": "^0.14.5", - "@iliad-ui/react": "^0.20.5", + "@iliad-ui/picker": "^0.14.6", + "@iliad-ui/react": "^0.20.6", "@iliad-ui/styles": "^0.18.0", "lit": "^2.0.0" }, diff --git a/projects/story-decorator/CHANGELOG.md b/projects/story-decorator/CHANGELOG.md index 9ece650c6f0..ca5192396fd 100644 --- a/projects/story-decorator/CHANGELOG.md +++ b/projects/story-decorator/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.10.5...@iliad-ui/story-decorator@0.10.6) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/story-decorator + ## [0.10.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.10.4...@iliad-ui/story-decorator@0.10.5) (2022-11-11) **Note:** Version bump only for package @iliad-ui/story-decorator diff --git a/projects/story-decorator/package.json b/projects/story-decorator/package.json index b544dddf93e..5c58d9456d4 100644 --- a/projects/story-decorator/package.json +++ b/projects/story-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/story-decorator", - "version": "0.10.5", + "version": "0.10.6", "publishConfig": { "access": "public" }, @@ -49,8 +49,8 @@ "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/menu": "^0.17.3", "@iliad-ui/overlay": "^0.18.3", - "@iliad-ui/picker": "^0.14.5", - "@iliad-ui/switch": "^0.12.3", + "@iliad-ui/picker": "^0.14.6", + "@iliad-ui/switch": "^0.12.4", "@iliad-ui/theme": "^0.15.3", "tslib": "^2.0.0" }, diff --git a/projects/vrt-compare/CHANGELOG.md b/projects/vrt-compare/CHANGELOG.md index 7f4366ae207..467962b8e89 100644 --- a/projects/vrt-compare/CHANGELOG.md +++ b/projects/vrt-compare/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.7.5...@iliad-ui/vrt-compare@0.7.6) (2022-11-11) + +**Note:** Version bump only for package @iliad-ui/vrt-compare + ## [0.7.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.7.4...@iliad-ui/vrt-compare@0.7.5) (2022-11-11) **Note:** Version bump only for package @iliad-ui/vrt-compare diff --git a/projects/vrt-compare/package.json b/projects/vrt-compare/package.json index a23f6dc8f70..49b902a3dfd 100644 --- a/projects/vrt-compare/package.json +++ b/projects/vrt-compare/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/vrt-compare", - "version": "0.7.5", + "version": "0.7.6", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-bar": "^0.7.5", + "@iliad-ui/action-bar": "^0.7.6", "@iliad-ui/action-button": "^0.14.3", "@iliad-ui/action-group": "^0.12.3", "@iliad-ui/base": "^0.12.2", From de8cb8abae5238f207903b6a4de292f7478a6f66 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Fri, 9 Dec 2022 14:43:45 +0800 Subject: [PATCH 25/28] feat: icons update --- .../icons/sp-icon-editor-error-fill.ts | 23 ++ packages/icons-editor/src/data.json | 378 +++++++++--------- .../src/elements/IconErrorFill.ts | 27 ++ packages/icons-editor/src/icons.ts | 1 + packages/icons-editor/src/icons/ErrorFill.ts | 31 ++ packages/icons-editor/src/svg/ErrorFill.svg | 3 + packages/icons/src/icons-editor.svg.ts | 2 +- 7 files changed, 280 insertions(+), 185 deletions(-) create mode 100644 packages/icons-editor/icons/sp-icon-editor-error-fill.ts create mode 100644 packages/icons-editor/src/elements/IconErrorFill.ts create mode 100644 packages/icons-editor/src/icons/ErrorFill.ts create mode 100644 packages/icons-editor/src/svg/ErrorFill.svg diff --git a/packages/icons-editor/icons/sp-icon-editor-error-fill.ts b/packages/icons-editor/icons/sp-icon-editor-error-fill.ts new file mode 100644 index 00000000000..ff3a002e5ee --- /dev/null +++ b/packages/icons-editor/icons/sp-icon-editor-error-fill.ts @@ -0,0 +1,23 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { iliadCustomElementsDefine } from '@iliad-ui/base'; +import { IconErrorFill } from '../src/elements/IconErrorFill.js'; + +iliadCustomElementsDefine('sp-icon-editor-error-fill', IconErrorFill); + +declare global { + interface HTMLElementTagNameMap { + 'sp-icon-editor-error-fill': IconErrorFill; + } +} diff --git a/packages/icons-editor/src/data.json b/packages/icons-editor/src/data.json index d13c54da1ac..f6b727a49ba 100644 --- a/packages/icons-editor/src/data.json +++ b/packages/icons-editor/src/data.json @@ -7,7 +7,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/92b4b9f2-951e-4a98-9802-bd32c185483a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b4988f53-1cf4-4400-9187-2549195e26e2" }, "25:28": { "name": "label_y", @@ -17,7 +17,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/65b132e8-0202-4168-88f9-1413a595226d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/642f2a2d-9897-4683-9221-311b2d47f13b" }, "382:510": { "name": "label_z", @@ -27,7 +27,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8ff5a3ec-0580-4d73-8c88-243aa5dd6057" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2a0316f8-eeec-4cb4-afb0-47f8966e3f23" }, "91:383": { "name": "label_d", @@ -37,7 +37,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5563823d-2182-4428-98cd-b85ab4ee4cb2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a9a9eb94-2edc-4f78-821f-d12c72422ebb" }, "91:392": { "name": "label_v", @@ -47,7 +47,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/31b90c65-babd-44ec-be0a-7d71f132a4f5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9659a1c2-8ad3-4a2f-8996-b9b150cfbf4a" }, "92:328": { "name": "label_c", @@ -57,7 +57,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9dfc2f58-bfc7-4ba6-a3aa-b4a7a73ce8c1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7e6d3090-3339-4373-aa0e-7603f0dcb926" }, "97:478": { "name": "label_g", @@ -67,7 +67,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/61e75b43-c36e-4064-8e0a-35141ecf2873" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2b06d903-e3a1-4c56-b545-471431f4183f" }, "964:933": { "name": "unit", @@ -77,7 +77,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/34a4adf1-81a9-41d0-9492-3aac2447d077" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2a8a4706-22d0-44d4-ae0d-37fa3152a5d4" }, "8:8": { "name": "command", @@ -87,7 +87,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6e71fbf7-c2f2-43ab-90f3-52fb33c0d855" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6d13835e-964c-48f5-a0ab-e235e4d13118" }, "97:457": { "name": "shift", @@ -97,7 +97,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0e038f2c-8cf0-4720-8015-b74fb5b181a8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ea65bc02-8d49-4237-a16c-935bfed3e9ea" }, "350:2642": { "name": "option", @@ -107,7 +107,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8b5b7cf5-25a2-4755-93f4-827f243e83c3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/aa5357d8-0f93-48b3-b64f-637492bb2f2d" }, "9:30": { "name": "backspace", @@ -117,7 +117,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f83ab58f-345c-44a0-aaf6-5a702029ebeb" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/077f23e8-e495-4292-8025-7a0d444da79d" }, "326:546": { "name": "label_openbracket", @@ -127,7 +127,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2cdd8aef-f422-43d9-8cf9-fd9a20b3d57d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/26472144-b34e-46f3-a0ed-cd7a07646edb" }, "326:536": { "name": "label_closebracket", @@ -137,7 +137,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/dfb23612-e354-4170-9e23-6a927686c323" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3a3b5293-ef5f-45ab-8aae-0878f350c74e" }, "0:36": { "name": "format_left", @@ -147,7 +147,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8abc048c-6f31-4962-90b7-ad7ba0525a5a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2a7e6753-3cdd-4ac1-8d67-ab9732599b16" }, "0:38": { "name": "format_center", @@ -157,7 +157,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8e0b65f9-8dc2-44b0-a412-4e01b7718eed" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3567bf0a-6d2a-42b6-9cf2-269e3e4f0cb5" }, "0:40": { "name": "format_right", @@ -167,7 +167,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/91f22347-e6b2-4f34-947f-58c76e29a6a2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/957b5841-4368-4e3c-8fca-b4fdf777cce6" }, "0:34": { "name": "format_justified", @@ -177,7 +177,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d84cc45d-d0db-4920-867a-fb7b62bce3ff" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6642e766-5407-400c-9b69-f2bbe6085cba" }, "1054:953": { "name": "format_align_top", @@ -187,7 +187,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c11477c1-5791-48d9-83da-87c8a00ff178" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a11914f8-f7a0-44a5-8a1c-45c3f96a737f" }, "1054:982": { "name": "format_align_medium", @@ -197,7 +197,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/16ea3f3e-0bf8-4ced-836b-935a3e8ea627" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7730ddf9-cc90-4daf-8dee-841d13ae12f8" }, "1054:894": { "name": "format_align_bottom", @@ -207,7 +207,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3fabbb05-9bfe-4167-9d49-776cf4ab09ea" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/35beb4f8-6f27-4c38-829b-d9f1ade6981c" }, "0:28": { "name": "format_pacing-lines", @@ -217,7 +217,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8f8ab0f1-c83d-4b18-a4a9-63ee0ea6b649" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/45230c84-1a34-4105-bf5a-1670d9e234ee" }, "0:32": { "name": "format_spacing-letter", @@ -227,7 +227,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/673bb3a4-7a3d-4065-8436-855299ad7c8c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b68eb241-5aae-4928-a070-4dea268530f9" }, "0:20": { "name": "text_underline", @@ -237,7 +237,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9cf33c98-6878-488d-b7f9-ef4a1c047825" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5de297c9-255b-4948-8743-b658eb698c48" }, "0:18": { "name": "text_italy", @@ -247,7 +247,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/96a219b6-497d-4d5a-884c-e32662c5ade3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/56a70747-112b-4b74-b659-6d7e4cf6c5eb" }, "0:24": { "name": "text_deleteline", @@ -257,7 +257,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5dca32e4-c03d-40a6-8dd1-03333202797e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/10814e60-a848-4452-93fa-628df3dfbf3d" }, "0:13": { "name": "text_bold", @@ -267,7 +267,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/edbf5562-306f-4110-b841-cb9465fa296b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1ad4e66e-e511-44b0-be81-9cb006d93f72" }, "20:109": { "name": "format_list_bulleted", @@ -277,7 +277,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ef159154-093b-44ca-8fe9-d5f90a6c22cb" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/41c7c9aa-3803-4a93-a246-f999b54d39d8" }, "20:113": { "name": "format_list_numbered", @@ -287,7 +287,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a6d079f8-399f-4374-9a7f-2e988b50c5b5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5025bd5e-ee55-456f-b393-270981e4f7e1" }, "20:131": { "name": "format_indent_decrease", @@ -297,7 +297,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f0a3f240-19da-4df4-8616-690e44e74af5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a22124f1-5cd3-41fe-b544-115ae90816e8" }, "20:135": { "name": "format_indent_increase", @@ -307,7 +307,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ce691144-6be2-490e-8bf3-d8aff08c3a82" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fd2226f8-681d-472f-a409-d5a1dfe8d85a" }, "0:8": { "name": "text_scale", @@ -317,7 +317,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6dafeeae-c021-4d81-8e65-963a4d0f1007" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/890a6c83-3a11-4b77-ae1d-23e00fd0b234" }, "323:573": { "name": "display", @@ -327,7 +327,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1c65bdec-74fd-40c3-9757-68358e973d02" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2c1badd4-a0ea-463f-838e-a6c447024a79" }, "20:105": { "name": "none", @@ -337,7 +337,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7fa00a0e-35aa-41fb-bba9-3727bc14d430" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7afab360-7ec0-4477-94b8-bfe95159e852" }, "36:87": { "name": "add", @@ -347,7 +347,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bfc58aa3-9865-4bc8-a7b6-d57b54793be9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a56ba680-90b8-46d1-8c52-d776d12cb615" }, "24:49": { "name": "remove", @@ -357,7 +357,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e01e6c19-fd1f-4143-bf8d-2bdd0f56f6ee" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bdf22a3e-f215-4c4b-8dda-2dc9195c6bbb" }, "4:32": { "name": "close", @@ -367,7 +367,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c92385a7-7cd1-4924-bab4-b15b4b47a6b6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f197c345-801e-4b99-921e-1186fe2a38da" }, "51:236": { "name": "done", @@ -377,7 +377,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d10c1563-cd79-4df4-8ecd-f553b46388ca" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/18d2b815-b12c-467f-87a5-34b9ac9aa66d" }, "902:739": { "name": "clear", @@ -387,7 +387,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5221e57a-5406-4680-9499-29d34a69673f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/78ace455-da3e-4e91-a895-e7d9e2696a60" }, "36:102": { "name": "menu", @@ -397,7 +397,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b6a979c3-5950-48db-aa37-d1fdc59f492c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d56771d3-28ab-41af-b75b-47b61a018664" }, "36:98": { "name": "pages", @@ -407,7 +407,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/874f1f27-37d4-4f8e-b65c-f9c487435251" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cc951021-e1cb-4e35-aa9a-cecfd59e2a45" }, "36:93": { "name": "layers", @@ -417,7 +417,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5cd6f887-aacb-4e86-a655-c59e1919df06" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fc13c913-9b37-4982-bc3a-34602cf401df" }, "36:88": { "name": "theme", @@ -427,7 +427,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d0c86134-7758-47aa-ad10-d1d8a1902560" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cd943f1e-bad4-47e0-9776-4d2964209929" }, "10:9": { "name": "home", @@ -437,7 +437,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/22888fe4-3480-4978-8b6c-6afa0708dffd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d166f9f7-7968-4526-830b-2b60dbbbbfec" }, "36:106": { "name": "desktop", @@ -447,7 +447,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8ddbad36-0d85-4e99-95c7-5285e4eaac4b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2da188c3-b22f-473e-ba07-ba803abc8c36" }, "36:110": { "name": "tablet_mac", @@ -457,7 +457,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c411cc2d-adc5-440a-bbb8-983f2f29a83d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8682ed72-2ad7-4b3a-9fbb-43350c965ee2" }, "36:114": { "name": "smartphone", @@ -467,7 +467,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/11c9578a-8602-4b50-a5c5-0c28205b2e18" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a4ef8296-124a-4f2f-9211-2d4a42736d5d" }, "37:203": { "name": "tune", @@ -477,7 +477,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6fda2630-fa4e-4faf-951a-6ad39c1563dc" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/862e1927-67ef-4d61-a11b-d0d978c8a7ee" }, "36:132": { "name": "undo", @@ -487,7 +487,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/67de4cd8-80fa-4c07-b685-e762a6d55f3f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ca7bcaf9-ef61-4c58-b638-8d91f90b2fce" }, "36:131": { "name": "redo", @@ -497,7 +497,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b3738bf3-bc5c-43a6-80f1-2e539e19d8de" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bd9aa892-f927-4000-8eae-3f75dcdc1549" }, "932:766": { "name": "open_in_new", @@ -507,7 +507,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d60547c6-d6b5-4a3c-ab6a-c2143fcf5061" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ae24e8b8-f79d-4756-b5a1-f0c7f83f1f09" }, "510:619": { "name": "easeout_quad", @@ -517,7 +517,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/dff2a90f-b91e-44bf-9c89-035a35712aaa" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6132dec3-a0c6-43ca-9e3f-1df6d0072831" }, "510:650": { "name": "easein_quad", @@ -527,7 +527,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/178e603d-5e00-4272-9197-57cf5c9a95ec" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4ba96626-0f43-491f-8327-a8bcb639b8cb" }, "510:672": { "name": "easeout_cubic", @@ -537,7 +537,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/22fc14ed-306a-4728-9508-c32ef5412b5f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e03de8aa-374f-440d-8c07-9f0f8e835882" }, "510:694": { "name": "easein_cubic", @@ -547,7 +547,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/38957437-003c-4c4b-817c-1efe667239f0" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c782e03e-2289-4976-a7c7-8c224288a31c" }, "510:732": { "name": "easeinout_cubic", @@ -557,7 +557,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5b4eb9fb-7ed2-403f-9caf-f352465834cf" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e6a8a4b4-e813-4eab-a01d-1ec9534c0ce8" }, "510:754": { "name": "easeout_back", @@ -567,7 +567,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7b851102-8e11-4247-be42-8a6c98bcab07" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8c01a389-2fcf-4c9a-8f17-8ebf15afd797" }, "510:776": { "name": "easeout_elastic", @@ -577,7 +577,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2fce52b8-0b33-4b95-9c3a-69b9c41332fb" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2a1b98e8-a1b2-4f82-8707-2d5f084fd9dc" }, "510:798": { "name": "easeout_bounce", @@ -587,7 +587,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a75afd6b-2674-44dc-8620-13a163f4d4ba" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5b94e7d9-a9a4-4843-b438-e9e30eb963c2" }, "511:661": { "name": "linear", @@ -597,7 +597,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9036b13b-f4c1-4af6-bc87-65fdbccf4f65" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/54695476-0ed7-46c9-8108-a3658138b10f" }, "37:214": { "name": "text", @@ -607,7 +607,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8629eee8-b6af-4ec6-807e-a0418e81a043" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7de03045-c270-41cc-a393-00acc6965580" }, "37:219": { "name": "paragraph", @@ -617,7 +617,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bd75909f-fda2-46ad-9e5e-29865aa9b30c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bf789563-b25d-4442-8dea-efea62569830" }, "37:223": { "name": "image", @@ -627,7 +627,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/426f1584-4eed-4e0b-aec4-60b67d098936" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3e2bbb6e-4a6e-4843-916d-6832fccad4ed" }, "37:227": { "name": "container", @@ -637,7 +637,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/44e1b425-9188-4b86-a601-07ff29a8ef4b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e6bf1504-4e18-410e-8edc-df06bc5518c5" }, "320:472": { "name": "layout_vert", @@ -647,7 +647,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/92e56b9d-cf05-467a-824f-2b8114b5dd47" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6f0ef681-ed58-47be-889f-473de94d7b35" }, "320:517": { "name": "layout_horz", @@ -657,7 +657,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/15933a33-c83e-41b9-9f7d-dd59ede7f9c9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e6d8bb47-2229-49c8-b00a-66654d6c1f82" }, "958:894": { "name": "layout_sliding", @@ -667,7 +667,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d172dd3a-ae63-4602-994e-277b43118f22" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d1200d0d-3b98-4d0d-8258-08ed1027da22" }, "959:958": { "name": "layout_wrap", @@ -677,7 +677,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/da6b4042-09b8-472a-9b9a-72bab7b070b3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8c059da5-fc9e-4a33-974a-0e9194bbccc6" }, "967:1005": { "name": "layout_pageturn", @@ -687,7 +687,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fc433b7f-782b-4411-9607-990910eb525f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0ed8e16f-a0fd-4e93-8fe4-4bfc77db5351" }, "959:999": { "name": "section", @@ -697,7 +697,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/12f36932-caad-4c2a-b603-f133ee907fe0" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4c8b9425-d64e-4934-956f-6638b81019a3" }, "439:552": { "name": "materiel", @@ -707,7 +707,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fc9569d9-12ad-4631-9845-faabf6ac1d9a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5ebaa882-a398-4a95-b3d5-176c8b1beba7" }, "25:97": { "name": "arrow_left", @@ -717,7 +717,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/454ed391-6043-4633-b918-776cc2667806" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a5c5e48c-fd54-4a27-87da-a225bffe3f22" }, "25:117": { "name": "arrow_right", @@ -727,7 +727,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0ce2ffb1-47e2-42f1-b055-1328c03f3491" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/606edf0a-37c6-4849-b2e0-4e4268203967" }, "37:207": { "name": "arrow_down_small", @@ -737,7 +737,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3bbc0d53-5780-40d9-bd6e-83009ac9f3f7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2c517924-63d2-4b2a-b21e-44a7977ffb81" }, "54:237": { "name": "arrow_right_small", @@ -747,7 +747,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f8c8b6d5-9b5a-4939-9e88-b4fac6503c6b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/56ddefc2-1425-44f2-a77f-fbcd516583fa" }, "83:353": { "name": "direction_down", @@ -757,7 +757,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/af914322-cd11-40ef-a85b-cc7d711c0624" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ae337f94-3a7e-4e61-b1c7-4ae4c5e4b15a" }, "83:360": { "name": "direction_right", @@ -767,7 +767,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9742a20f-b667-42da-9556-c0918eec01cb" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5518bb70-4105-49b4-98b4-9aa40a6f6c61" }, "91:351": { "name": "direction_up", @@ -777,7 +777,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/db11c080-b2b4-4e3a-afbc-4094afa8070c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2ddb63fa-69cb-4145-8c14-96cac42ec4d8" }, "91:358": { "name": "direction_left", @@ -787,7 +787,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1de0df56-39ad-4915-a397-ed878d1a8d7f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/606732ad-b074-4384-ab0d-5b8566016390" }, "30:21": { "name": "slider_invisible", @@ -797,7 +797,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f5fb9a05-b513-4098-9840-41413d74aebc" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/57b260fb-97d0-4275-b8f9-ab701ec9246b" }, "406:539": { "name": "arrow_triangle", @@ -807,7 +807,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b8b3c6ef-6c31-4b1c-8844-9d613bc93950" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0b803516-95f4-4d2a-a17e-c3240b36a7e0" }, "60:260": { "name": "page_header", @@ -817,7 +817,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/aa5a1d40-2844-454a-9b7b-5db3dff1fa0b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/82ef7e75-2413-4552-9946-6f58881530b7" }, "65:509": { "name": "page_footer", @@ -827,7 +827,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d1c8f01d-eb97-4e30-a8ae-a4bd02ef548b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3470c3b6-0a36-4f87-b965-7cc7aa99ed78" }, "65:522": { "name": "video", @@ -837,7 +837,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/879d5faf-04a3-406a-8674-d87a0415d68d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e04a7caa-ab6c-462f-9828-f7a178a1c720" }, "65:550": { "name": "star", @@ -847,7 +847,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/324138d4-7a34-4155-986f-c066d642bdec" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d93fcc16-9ad0-49a9-ba6e-881e40d26a51" }, "66:335": { "name": "file_folder", @@ -857,7 +857,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/235836a3-70b0-47b8-bc87-457dbc6d7da0" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3800a4de-5311-49e3-babf-03a8fb1d7d12" }, "65:583": { "name": "contacts", @@ -867,7 +867,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/153122e7-cdb5-4f2b-b1d3-98a69a13cf55" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/50dbca73-2302-4c3e-910a-b1f9480775fa" }, "52:739": { "name": "rotate_left", @@ -877,7 +877,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/33733dd0-bd8d-4b07-a549-4e053ca439f4" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cdb3c671-c090-412e-a874-4744179f0de1" }, "314:443": { "name": "width_fixed", @@ -887,7 +887,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/89596501-c0a0-4d01-a7cd-504680c24cda" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/12a8fb0b-866c-4a37-8705-6ee1f91c6b61" }, "314:416": { "name": "width_fill", @@ -897,7 +897,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4a742923-7a95-44cd-a1b9-91677fd1d2be" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/305eb78d-3282-4f45-a72d-3fd23e83a890" }, "314:531": { "name": "width_hug", @@ -907,7 +907,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4c826819-956d-4793-9218-eb85f7f105ef" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2eb8bc56-e26f-497e-bb27-ca991db98a00" }, "314:518": { "name": "height_fixed", @@ -917,7 +917,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/59af8b88-7d07-4e02-bb2d-37903dd8c1a1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/48e5f683-2d04-4067-86d6-bcc3dea341d8" }, "314:571": { "name": "height_fill", @@ -927,7 +927,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3db2e0ba-14ff-4542-b6dd-e8e41a5d8987" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/875a0d3c-ee3b-4ebe-a319-0ff7146d93ae" }, "314:581": { "name": "height_hug", @@ -937,7 +937,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2d63debe-24c6-4df8-adb1-edd2e7dabdfa" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/088e2830-df63-49bf-9027-92584f8be726" }, "10:22": { "name": "settings", @@ -947,7 +947,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d8c3b5ea-f9c4-4752-91bf-b17a79ea0b47" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/905bc21a-62e9-4f2f-9644-d5dbc7ebd4df" }, "922:781": { "name": "import", @@ -957,7 +957,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/eebd842d-f1fb-4539-a9dc-422c737ac5d6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b6b4c507-b337-49ae-8122-cb46e793cbd0" }, "10:117": { "name": "link", @@ -967,7 +967,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/03ccd722-1ef1-4916-b16d-34afc52f58fa" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d6965e77-db83-49e9-be74-d4aec2831f70" }, "21:46": { "name": "locked", @@ -977,7 +977,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/98c82150-ffe0-4db4-b6d9-35104707cce1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f0f2efce-0332-4c92-877e-09a3789ea1e7" }, "21:54": { "name": "unlocked", @@ -987,7 +987,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/24d21f3e-fe38-4071-9dff-ac3e274ee3f6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e26fb3ca-d94b-470e-b13a-92f6df3ece9b" }, "24:56": { "name": "eye", @@ -997,7 +997,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9bc02042-0938-4013-9f67-84917bb194d3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7d316f96-48c4-479e-a8b4-c6a575b03105" }, "52:645": { "name": "eye_off", @@ -1007,7 +1007,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8ddf53a7-5b0f-4c1c-b12d-223c90790d41" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/92483b97-c56d-43d9-9e74-6083f9094b47" }, "65:301": { "name": "eye_display", @@ -1017,7 +1017,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/82dbefdd-8650-4cac-8ca0-56bf691a1be3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fb38ef62-cba5-4b61-8989-a3c5b99c19ee" }, "301:399": { "name": "play", @@ -1027,7 +1027,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/32b3530d-359a-4474-afe0-c6e28cf4011a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3c039fc9-68e5-4449-b794-cf61613e40b5" }, "410:565": { "name": "stop", @@ -1037,7 +1037,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8acba7a3-c8ee-4010-9388-7453853e9ece" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2a32df7b-7a18-4ca6-bc4a-373995d98637" }, "304:400": { "name": "edit", @@ -1047,7 +1047,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2d939254-f840-4f27-ad44-51649e91545a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/13f301e6-2835-4b67-b654-f4f9df429104" }, "25:161": { "name": "colorpicker", @@ -1057,7 +1057,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f6b1110d-f63a-4c9d-bb49-446117a8cfa1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6946bd16-3ca0-4ec2-94f4-02e3505ab574" }, "52:720": { "name": "animation", @@ -1067,7 +1067,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/14a7d7a0-4629-4420-b777-277798bf0a62" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6080b790-5dcf-4e60-8bbd-f90fdca1a9c9" }, "65:412": { "name": "crop", @@ -1077,7 +1077,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ddedf09c-1c2d-415c-b345-34bc5c811ad1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f31584a7-797e-41c1-9602-a2118eacd303" }, "65:417": { "name": "focus", @@ -1087,7 +1087,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/10f72526-7d59-4cd3-8964-920bbcf4f5c2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fd3fab75-06ef-4220-bc41-906e7ef8891d" }, "52:592": { "name": "open_full", @@ -1097,7 +1097,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4cb15966-4830-42bd-b791-f1629deb75ba" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d166fc4d-9e79-4653-9f40-55fe8094a6dc" }, "52:682": { "name": "close_full", @@ -1107,7 +1107,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f46b18d6-3214-44df-b575-3761fff919a7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/edc51387-a8ee-4404-a5c7-ea01b4db2eeb" }, "409:535": { "name": "direction_center", @@ -1117,7 +1117,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e227fef1-460b-4f6f-bfe5-6120c7048254" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7f879639-9c0b-4f99-9a85-51e26336f9fa" }, "18:14": { "name": "align_left", @@ -1127,7 +1127,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/945cea55-c933-4bb0-8223-21a1542a981b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fb13460e-d071-4fa1-9543-847a635d9430" }, "18:83": { "name": "align_horiz_centers", @@ -1137,7 +1137,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3c4a3716-a9fa-4769-be37-d3461dbf9c3f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b9ae262e-5b39-4c4a-99eb-41cab9439c3a" }, "18:94": { "name": "align_right", @@ -1147,7 +1147,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9f6abab7-2ce2-477b-b926-a9a90b17a344" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/338aea37-5025-48b5-8c0c-4519968d33e2" }, "18:92": { "name": "align_top", @@ -1157,7 +1157,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/78cf9ee2-39c6-4332-b845-1f73cd2b6dc3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/941c8c51-0760-4fae-b0a2-6b11c40c093a" }, "18:90": { "name": "align_vert_centers", @@ -1167,7 +1167,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/99d6173e-643e-4d6d-bd8d-3e7885977a3c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9f02e5a0-9831-42fd-a7bf-6e86f9e40f62" }, "18:88": { "name": "align_bottom", @@ -1177,7 +1177,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/53c2bbc3-9357-4faf-afc0-675985ba2d2d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7ad4f306-fe59-477c-898f-c9037108a5ab" }, "18:86": { "name": "align_arrange_horiz", @@ -1187,7 +1187,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/dbebbd00-5a63-44b2-87e0-c80fb02aaa97" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/501d26ab-19f0-406d-b3e2-f8b3c1c52456" }, "18:84": { "name": "align_arrange_vert", @@ -1197,7 +1197,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/93cb7152-0254-4fc8-8fc4-87753cc33f5f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a33c0e60-7361-45cb-84b1-1a3941f41af7" }, "315:701": { "name": "vert_left", @@ -1207,7 +1207,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b2290e3f-16e7-4004-ab25-e78cd9b80acd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d5b79958-e29e-444c-8b20-1110c30b46ea" }, "315:719": { "name": "vert_centers", @@ -1217,7 +1217,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/34e2080c-bc7c-4f22-b17f-d959530f708a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6e9762e4-f515-484c-87e5-790ee382aa20" }, "315:717": { "name": "vert_right", @@ -1227,7 +1227,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/35fb97d6-7cdf-4c3c-8321-f4ced4259233" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d7be71b6-432e-4cbf-ab79-1070087c8a5f" }, "315:715": { "name": "horiz_top", @@ -1237,7 +1237,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/23f84632-481f-4368-b590-4c3b5e0e834d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ac073dea-89ed-49da-b383-b672ea40ad60" }, "315:713": { "name": "horiz_centers", @@ -1247,7 +1247,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/82112f72-e3e2-4b37-9f4d-a7fc4b664b99" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/738a7db4-0100-46d6-93a0-196276eea17e" }, "315:711": { "name": "horiz_bottom", @@ -1257,7 +1257,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/46dbc285-95ff-45dc-8857-e87602aba1cd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5e9c352b-3ae8-4434-9b7b-e06fa0e410d1" }, "815:863": { "name": "file_outline", @@ -1267,7 +1267,7 @@ "description": "add, create, new, plus, +", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8e3ee6b5-6487-4fbc-91f4-61cd14519d4c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3ae20c49-d3f4-4cef-9343-a340353d0950" }, "815:869": { "name": "grid_outline", @@ -1277,7 +1277,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c38c0b34-cc19-4f1c-8c66-db0c349b4792" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/af9475e2-4a6d-49ef-93cd-bb7951787ba9" }, "10:122": { "name": "help", @@ -1287,7 +1287,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fd4dff36-0e38-4e2c-96e3-89702a1035f5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7c3734b7-627d-4a82-8e84-10bd37f8a41f" }, "65:330": { "name": "check", @@ -1297,7 +1297,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e0225bc3-a870-472f-ae23-7ac0e7a4c26d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/dd9e6628-a4cc-4f02-b353-f6d040244504" }, "65:350": { "name": "info", @@ -1307,7 +1307,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2497d245-dc20-4d54-8859-5dbd0d1968b2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4282bec3-2501-4dae-812c-04d78efa8516" }, "65:373": { "name": "alert", @@ -1317,7 +1317,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a07005eb-04fc-43f8-bb9b-4a54261cc22d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a4032518-e1b2-4ee5-a14f-6fab1ed2abea" }, "108:396": { "name": "help_fill", @@ -1327,7 +1327,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c8f06be8-b15f-4791-9e78-a5b76c281600" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9be00000-6932-4696-8403-b74e31d80f07" }, "109:392": { "name": "check_fill", @@ -1337,7 +1337,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d095bada-5f67-4cd1-b4ec-44d5892a8a46" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9b0afdec-dfb6-44b4-8548-c2f2ae4767af" }, "109:393": { "name": "info_fill", @@ -1347,7 +1347,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cd35fe96-fd91-40a2-a2f8-f1ed589d8c09" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a778d10f-2ed1-417e-ab25-1c36df2fb7e5" }, "109:394": { "name": "alert_fill", @@ -1357,7 +1357,17 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3f907fe5-1cf5-4bf8-8f72-5f7d268a0149" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/198af70a-8d21-48b7-ab21-ea44c67ca5ef" + }, + "1577:955": { + "name": "error_fill", + "id": "1577:955", + "key": "cdd3d20cead98060e6f73ded55cf5bdac89756fe", + "file": "RTJwK4z4uVvkxsLo6Fd3Yi", + "description": "", + "width": 24, + "height": 24, + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/735bc37f-0c1f-4f1b-bec4-e414580c7b7c" }, "818:886": { "name": "radio_button_unchecked", @@ -1367,7 +1377,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5c0755cc-85cd-4f6b-a956-20377e86db8b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/afa66aac-d29e-4c30-aa36-ac1a3d842c57" }, "23:18": { "name": "corner", @@ -1377,7 +1387,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ec2ce400-de0c-4972-aec0-eb20c33bf131" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/75c817df-8804-40eb-b708-05e2c0819827" }, "37:29": { "name": "corner_radius_top_left", @@ -1387,7 +1397,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/17453c8a-df47-4f35-bc70-619a3285b530" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ec276caf-a8fa-4111-8856-c2a8dba76d74" }, "37:35": { "name": "corner_radius_top_right", @@ -1397,7 +1407,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/37fc6ca4-0bc5-408c-aed3-ad8e86dde6cd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6bed2234-7181-430a-b5e1-ebddb9451686" }, "37:45": { "name": "corner_radius_bottom_left", @@ -1407,7 +1417,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/424e06c8-a68e-4215-925b-15f09eec1d2d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3012a40b-5784-4700-abfe-1bb0ecfb0ac3" }, "37:40": { "name": "corner_radius_bottom_right", @@ -1417,7 +1427,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b82e7c33-3227-452b-80d7-acd4511e3bd0" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bd092b28-96bc-4e23-9656-908e1555098f" }, "953:784": { "name": "wrap", @@ -1427,7 +1437,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6fb75af9-1411-4f9c-9cb1-6c8df0252ea2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/241f0af6-4dd3-4661-af5d-54a503f2bcfc" }, "955:831": { "name": "padding_independent", @@ -1437,7 +1447,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7e76e1f3-71f9-4777-9deb-379f414c7b5b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b9f08647-8126-4d79-9b1d-80dd9ffbfe0b" }, "966:980": { "name": "padding", @@ -1447,7 +1457,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a51d7d77-1eb4-411e-aca3-dd04fbfc3659" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5738dd0b-9050-4e6a-b254-c8ae3d064b56" }, "954:847": { "name": "padding_left", @@ -1457,7 +1467,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7eb7bfb3-832a-4ceb-b987-4755eddfe430" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6297be58-dcb7-4603-8727-461fded12c91" }, "963:891": { "name": "padding_right", @@ -1467,7 +1477,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b18aaf32-13b9-43be-ba85-925662688d7d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f06c9d9f-efbe-4d5a-a152-774f476cce35" }, "954:884": { "name": "padding_top", @@ -1477,7 +1487,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6ee291dd-e0c7-492a-9796-a18b1eb609a8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/654c15f5-35a6-4c89-a3c1-0fc77372961a" }, "963:917": { "name": "padding_bottom", @@ -1487,7 +1497,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4e18aa06-6466-4816-b769-7efdd927e612" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cdd7c77d-eac9-49c2-8a15-a227eecc2dc4" }, "954:1003": { "name": "spacing_horiz", @@ -1497,7 +1507,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/74f709d1-2555-432c-84e4-47746997e9b9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c5dca829-d85a-46ef-8b5b-943152607036" }, "954:970": { "name": "spacing_vert", @@ -1507,7 +1517,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7f5613e2-a809-4e0a-8507-811984fe4d88" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0a97c567-b738-4e10-bbb6-c778a89fb611" }, "786:735": { "name": "style", @@ -1517,7 +1527,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1094f262-9195-4f0d-b6bb-ed5b7349576d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2712bb46-5c98-4791-9501-270740f53b28" }, "25:171": { "name": "more_horiz", @@ -1527,7 +1537,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cd8db1a1-1f47-4d3c-9083-817301cb5b77" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6fdfcbfd-891d-4224-ae95-6d20208ed336" }, "24:18": { "name": "drag_handle", @@ -1537,7 +1547,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4d8b8670-e7d7-4984-92cc-9ac6971d0b0c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/90c3cc9f-84b6-4a9d-aa54-56b8d5b01d0b" }, "10:102": { "name": "stop_circle", @@ -1547,7 +1557,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/787a2247-c888-48eb-9332-eb84354aaa47" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/703d23d4-65b0-4942-9da7-6023650ce823" }, "1317:954": { "name": "publish", @@ -1557,7 +1567,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/dd49f86c-7af2-4af4-bd7a-19ab8635c2f4" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cea85396-30d8-4c87-b23f-9fdb34da967f" }, "10:109": { "name": "data_barchart", @@ -1567,7 +1577,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/514d476e-8272-43ed-8d2a-09440358b5eb" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/68e0f0bc-9de8-4761-a9d5-715168094a74" }, "935:783": { "name": "figma", @@ -1577,7 +1587,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ea76b0a0-5bc2-4b48-908f-5d92002dd1aa" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/443f2648-8829-4866-a494-5c4f2d73055c" }, "402:510": { "name": "time", @@ -1587,7 +1597,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e8be3a76-8a56-4fec-912c-afea41f037d3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1e9d18ab-f239-4614-82e9-f27b7758f6c2" }, "924:780": { "name": "global", @@ -1597,7 +1607,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/77880aa0-ae35-4a33-bfeb-374592476fa1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2e63d8c0-2e11-45b3-be00-65540266ca88" }, "1060:928": { "name": "earth", @@ -1607,7 +1617,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/40533f13-32e4-4c2b-bcd5-6bfeb6624a73" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e23a08fd-62d2-49f3-bd22-abc329c68a0c" }, "43:204": { "name": "cloud_off", @@ -1617,7 +1627,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9989c384-7758-4ec2-8ff8-f1c60f89e764" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/00d8760c-0d62-41ac-b6a2-492523214e8d" }, "43:210": { "name": "cloud_done", @@ -1627,7 +1637,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/08a0a728-6901-411c-bf2e-e32bbe226e50" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b594fd1e-c5a8-4afe-8656-ff39c3751cf3" }, "919:758": { "name": "loading", @@ -1637,7 +1647,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c7c8bd2a-71eb-4388-985e-98fce84194ea" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1a1e5530-5977-42c1-bd1f-ed00e8d5daca" }, "922:764": { "name": "loading_white", @@ -1647,7 +1657,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/535df9b7-69dc-4030-8cd5-27a83ebe97a7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b0a2e7fa-ba3f-41ed-8eae-7b56a5e58afa" }, "490:565": { "name": "fixed", @@ -1657,7 +1667,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b25f0be2-f7a1-4be8-bf65-7f1b83d5e404" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9f3a825f-04f1-46af-ac16-7113bd1422d5" }, "1065:957": { "name": " locate", @@ -1667,7 +1677,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2b1f27b2-8e61-4e2e-9278-f8dfec431f61" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ffcf2b7a-c011-4ba0-85c5-9d3c52eecbe4" }, "43:217": { "name": "qr_code", @@ -1677,7 +1687,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2474b2b8-7d3c-41ea-8f81-b87a60780ee6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6a3721c4-2d65-4057-aa7e-e2c02a4ea244" }, "512:726": { "name": "mouse_Hover", @@ -1687,7 +1697,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d9a71be4-cabe-4ec0-9b42-58d9017b838f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0423d3fe-6d4f-49dd-9b18-78442adad861" }, "403:511": { "name": "mouse_Click", @@ -1697,7 +1707,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1d0ec89a-e04a-4a6b-89db-2d97efd8b35f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/49abd161-5756-4734-aa7f-7b0333313250" }, "513:781": { "name": "scroll", @@ -1707,7 +1717,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b5c7b8d7-a2fd-449a-8a2e-6f0a5188ed27" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/77c19a1e-09f8-4dcd-8e3c-a1f55226838f" }, "905:809": { "name": "event", @@ -1717,7 +1727,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/459fc24b-1e01-4c85-b051-5d30bce5ffa2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/23f5e3b6-2ff8-4eee-b9d1-09367508b995" }, "848:743": { "name": "trigger", @@ -1727,7 +1737,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2abef82c-4d3d-4c62-885f-c179182b3031" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/70ad6f8d-6c8f-4749-9d22-665f6644a184" }, "907:783": { "name": "effect", @@ -1737,7 +1747,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/aa5bf73d-5940-41c4-9078-04075208123e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7cc3a86f-b0ff-43c2-b02b-070b85652b92" }, "514:891": { "name": "move", @@ -1747,7 +1757,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5b3eb140-6662-4c8f-8428-6c05885cee14" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4668e1ad-d015-4d59-aa55-dc713d69b7d1" }, "514:901": { "name": "scale", @@ -1757,7 +1767,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fa31bc66-f931-4e7a-9238-03e42571257f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cea49045-2d86-4c5b-9615-511f5ac9b26e" }, "514:911": { "name": "skew", @@ -1767,7 +1777,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cf6acda8-ca1f-4527-a45c-57d625f71bf3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f745d8c9-8d07-4998-ab2e-684550d1eaf6" }, "404:540": { "name": "inspire", @@ -1777,7 +1787,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/aca9bfec-1d6d-4a94-9d54-59150fce502d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/32b20d8a-1b89-4c57-a28a-2f316780726b" }, "1313:928": { "name": "delete", @@ -1787,7 +1797,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d41a7fce-863e-4946-ace4-a1f2fc8ce8ec" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/25539bd7-fa1e-40aa-9657-5707eb375cb2" }, "1314:992": { "name": "share", @@ -1797,7 +1807,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/de56986d-64e2-42bc-8c42-18eb60a72c01" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/95039cb6-e89f-4c50-a176-578a3dc73cbd" }, "1314:1001": { "name": "copy", @@ -1807,7 +1817,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/84d78e96-f67f-47bd-af7b-1535c9fae607" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/26b56f7c-2c62-410f-b547-05f60a003b56" }, "1316:972": { "name": "tag", @@ -1817,7 +1827,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/55b5ce3b-4a5a-4161-b8e4-fe029e0b6f7e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8052f44e-de28-445b-b34e-9191a19536a5" }, "1405:1016": { "name": "figma_static", @@ -1827,7 +1837,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/eacdc2bc-5909-4891-a9fb-96a8ee94fb5b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/46445d06-77b0-495f-911d-6dec23a36804" }, "1405:1066": { "name": "sketch_static", @@ -1837,6 +1847,6 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/48e7a545-9c7a-40de-962d-8d0e9eb1a41c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/321d740e-469b-4b20-954f-510bf614830d" } } diff --git a/packages/icons-editor/src/elements/IconErrorFill.ts b/packages/icons-editor/src/elements/IconErrorFill.ts new file mode 100644 index 00000000000..e0aade9d400 --- /dev/null +++ b/packages/icons-editor/src/elements/IconErrorFill.ts @@ -0,0 +1,27 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { html, TemplateResult } from '@iliad-ui/base'; +import { IconBase } from '@iliad-ui/icon'; +import { ErrorFillIcon } from '../icons/ErrorFill.js'; +import { setCustomTemplateLiteralTag } from '../custom-tag.js'; + +/** + * @element sp-icon-editor-error-fill + */ +export class IconErrorFill extends IconBase { + protected render(): TemplateResult { + setCustomTemplateLiteralTag(html); + return ErrorFillIcon() as TemplateResult; + } +} diff --git a/packages/icons-editor/src/icons.ts b/packages/icons-editor/src/icons.ts index 0c94a27b836..87a6a2efbec 100644 --- a/packages/icons-editor/src/icons.ts +++ b/packages/icons-editor/src/icons.ts @@ -68,6 +68,7 @@ export { EaseoutElasticIcon } from './icons/EaseoutElastic.js'; export { EaseoutQuadIcon } from './icons/EaseoutQuad.js'; export { EditIcon } from './icons/Edit.js'; export { EffectIcon } from './icons/Effect.js'; +export { ErrorFillIcon } from './icons/ErrorFill.js'; export { EventIcon } from './icons/Event.js'; export { EyeIcon } from './icons/Eye.js'; export { EyeDisplayIcon } from './icons/EyeDisplay.js'; diff --git a/packages/icons-editor/src/icons/ErrorFill.ts b/packages/icons-editor/src/icons/ErrorFill.ts new file mode 100644 index 00000000000..8661be0bfc4 --- /dev/null +++ b/packages/icons-editor/src/icons/ErrorFill.ts @@ -0,0 +1,31 @@ +/* +Copyright 2020 Adobe. All rights reserved. +Copyright 2021 Gaoding. All rights reserved. +This file is licensed to you under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. You may obtain a copy +of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under +the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS +OF ANY KIND, either express or implied. See the License for the specific language +governing permissions and limitations under the License. +*/ + +import { tag as html, TemplateResult } from '../custom-tag.js'; +export { setCustomTemplateLiteralTag } from '../custom-tag.js'; +export const ErrorFillIcon = (): string | TemplateResult => { + return html` + + + + `; +}; diff --git a/packages/icons-editor/src/svg/ErrorFill.svg b/packages/icons-editor/src/svg/ErrorFill.svg new file mode 100644 index 00000000000..7ed3e1f7c6e --- /dev/null +++ b/packages/icons-editor/src/svg/ErrorFill.svg @@ -0,0 +1,3 @@ + + + diff --git a/packages/icons/src/icons-editor.svg.ts b/packages/icons/src/icons-editor.svg.ts index fcd41fad5f1..1dcbd7765f3 100644 --- a/packages/icons/src/icons-editor.svg.ts +++ b/packages/icons/src/icons-editor.svg.ts @@ -11,4 +11,4 @@ OF ANY KIND, either express or implied. See the License for the specific languag governing permissions and limitations under the License. */ import { svg } from '@iliad-ui/base'; -export default svg``; +export default svg``; From fcade2494517280b683126ab838f0498eb74380d Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Fri, 9 Dec 2022 14:45:22 +0800 Subject: [PATCH 26/28] chore: release new versions - @iliad-ui/action-bar@0.7.7 - @iliad-ui/action-menu@0.16.7 - @iliad-ui/bundle@0.27.10 - @iliad-ui/card@0.15.5 - @iliad-ui/checkbox@0.16.2 - @iliad-ui/icons-editor@0.14.0 - @iliad-ui/icons@0.25.0 - @iliad-ui/picker@0.14.7 - @iliad-ui/popover@0.16.7 - @iliad-ui/react@0.20.7 - @iliad-ui/split-button@0.10.7 - @iliad-ui/switch@0.12.5 - documentation@0.1.41 - example-project-rollup@0.5.10 - example-project-webpack@1.6.10 - @iliad-ui/story-decorator@0.10.7 - @iliad-ui/vrt-compare@0.7.7 --- packages/action-bar/CHANGELOG.md | 4 ++++ packages/action-bar/package.json | 4 ++-- packages/action-menu/CHANGELOG.md | 4 ++++ packages/action-menu/package.json | 4 ++-- packages/bundle/CHANGELOG.md | 4 ++++ packages/bundle/package.json | 22 +++++++++---------- packages/card/CHANGELOG.md | 4 ++++ packages/card/package.json | 4 ++-- packages/checkbox/CHANGELOG.md | 4 ++++ packages/checkbox/package.json | 4 ++-- packages/icons-editor/CHANGELOG.md | 6 +++++ packages/icons-editor/package.json | 2 +- packages/icons/CHANGELOG.md | 6 +++++ packages/icons/package.json | 2 +- packages/picker/CHANGELOG.md | 4 ++++ packages/picker/package.json | 4 ++-- packages/popover/CHANGELOG.md | 4 ++++ packages/popover/package.json | 4 ++-- packages/react/CHANGELOG.md | 4 ++++ packages/react/package.json | 6 ++--- packages/split-button/CHANGELOG.md | 4 ++++ packages/split-button/package.json | 4 ++-- packages/switch/CHANGELOG.md | 4 ++++ packages/switch/package.json | 4 ++-- projects/documentation/CHANGELOG.md | 4 ++++ projects/documentation/package.json | 4 ++-- projects/example-project-rollup/CHANGELOG.md | 4 ++++ projects/example-project-rollup/package.json | 10 ++++----- projects/example-project-webpack/CHANGELOG.md | 4 ++++ projects/example-project-webpack/package.json | 6 ++--- projects/story-decorator/CHANGELOG.md | 4 ++++ projects/story-decorator/package.json | 6 ++--- projects/vrt-compare/CHANGELOG.md | 4 ++++ projects/vrt-compare/package.json | 4 ++-- 34 files changed, 119 insertions(+), 47 deletions(-) diff --git a/packages/action-bar/CHANGELOG.md b/packages/action-bar/CHANGELOG.md index 6b3ba2cc012..3860ad54761 100644 --- a/packages/action-bar/CHANGELOG.md +++ b/packages/action-bar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.7.6...@iliad-ui/action-bar@0.7.7) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/action-bar + ## [0.7.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.7.5...@iliad-ui/action-bar@0.7.6) (2022-11-11) **Note:** Version bump only for package @iliad-ui/action-bar diff --git a/packages/action-bar/package.json b/packages/action-bar/package.json index efc73bde52c..a56706b04b7 100644 --- a/packages/action-bar/package.json +++ b/packages/action-bar/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-bar", - "version": "0.7.6", + "version": "0.7.7", "publishConfig": { "access": "public" }, @@ -45,7 +45,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/popover": "^0.16.6", + "@iliad-ui/popover": "^0.16.7", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/action-menu/CHANGELOG.md b/packages/action-menu/CHANGELOG.md index 3c44b659d88..15a674f042e 100644 --- a/packages/action-menu/CHANGELOG.md +++ b/packages/action-menu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.16.6...@iliad-ui/action-menu@0.16.7) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/action-menu + ## [0.16.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.16.5...@iliad-ui/action-menu@0.16.6) (2022-11-11) **Note:** Version bump only for package @iliad-ui/action-menu diff --git a/packages/action-menu/package.json b/packages/action-menu/package.json index f2d55b74f3c..b5c87ac7311 100644 --- a/packages/action-menu/package.json +++ b/packages/action-menu/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-menu", - "version": "0.16.6", + "version": "0.16.7", "publishConfig": { "access": "public" }, @@ -51,7 +51,7 @@ "@iliad-ui/icon": "^0.17.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/menu": "^0.17.3", - "@iliad-ui/picker": "^0.14.6", + "@iliad-ui/picker": "^0.14.7", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/bundle/CHANGELOG.md b/packages/bundle/CHANGELOG.md index 4e58f1e0648..9cdd9e8227a 100644 --- a/packages/bundle/CHANGELOG.md +++ b/packages/bundle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.27.10](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.9...@iliad-ui/bundle@0.27.10) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/bundle + ## [0.27.9](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.8...@iliad-ui/bundle@0.27.9) (2022-11-11) **Note:** Version bump only for package @iliad-ui/bundle diff --git a/packages/bundle/package.json b/packages/bundle/package.json index 72ebf319a08..a66ab58723f 100644 --- a/packages/bundle/package.json +++ b/packages/bundle/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/bundle", - "version": "0.27.9", + "version": "0.27.10", "publishConfig": { "access": "public" }, @@ -47,18 +47,18 @@ ], "dependencies": { "@iliad-ui/accordion": "^0.9.2", - "@iliad-ui/action-bar": "^0.7.6", + "@iliad-ui/action-bar": "^0.7.7", "@iliad-ui/action-button": "^0.14.3", "@iliad-ui/action-group": "^0.12.3", - "@iliad-ui/action-menu": "^0.16.6", + "@iliad-ui/action-menu": "^0.16.7", "@iliad-ui/asset": "^0.9.2", "@iliad-ui/avatar": "^0.14.2", "@iliad-ui/banner": "^0.13.2", "@iliad-ui/breadcrumb": "^0.2.2", "@iliad-ui/button": "^0.24.0", "@iliad-ui/button-group": "^0.11.2", - "@iliad-ui/card": "^0.15.4", - "@iliad-ui/checkbox": "^0.16.1", + "@iliad-ui/card": "^0.15.5", + "@iliad-ui/checkbox": "^0.16.2", "@iliad-ui/coachmark": "^0.11.2", "@iliad-ui/color-area": "^0.9.2", "@iliad-ui/color-handle": "^0.6.2", @@ -71,8 +71,8 @@ "@iliad-ui/field-group": "^0.8.2", "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/icon": "^0.17.2", - "@iliad-ui/icons": "^0.24.0", - "@iliad-ui/icons-editor": "^0.13.0", + "@iliad-ui/icons": "^0.25.0", + "@iliad-ui/icons-editor": "^0.14.0", "@iliad-ui/icons-ui": "^0.13.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/iconset": "^0.13.2", @@ -82,8 +82,8 @@ "@iliad-ui/meter": "^0.9.2", "@iliad-ui/number-field": "^0.9.3", "@iliad-ui/overlay": "^0.18.3", - "@iliad-ui/picker": "^0.14.6", - "@iliad-ui/popover": "^0.16.6", + "@iliad-ui/picker": "^0.14.7", + "@iliad-ui/popover": "^0.16.7", "@iliad-ui/progress-bar": "^0.8.2", "@iliad-ui/progress-circle": "^0.7.2", "@iliad-ui/quick-actions": "^0.9.2", @@ -91,10 +91,10 @@ "@iliad-ui/search": "^0.13.3", "@iliad-ui/sidenav": "^0.15.2", "@iliad-ui/slider": "^0.18.3", - "@iliad-ui/split-button": "^0.10.6", + "@iliad-ui/split-button": "^0.10.7", "@iliad-ui/split-view": "^0.9.2", "@iliad-ui/status-light": "^0.13.2", - "@iliad-ui/switch": "^0.12.4", + "@iliad-ui/switch": "^0.12.5", "@iliad-ui/tabs": "^0.13.2", "@iliad-ui/tags": "^0.13.3", "@iliad-ui/textfield": "^0.15.2", diff --git a/packages/card/CHANGELOG.md b/packages/card/CHANGELOG.md index 38fd776f5e2..491815475e7 100644 --- a/packages/card/CHANGELOG.md +++ b/packages/card/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.15.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/card@0.15.4...@iliad-ui/card@0.15.5) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/card + ## [0.15.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/card@0.15.3...@iliad-ui/card@0.15.4) (2022-11-11) **Note:** Version bump only for package @iliad-ui/card diff --git a/packages/card/package.json b/packages/card/package.json index 490c9b919e8..ad5545add77 100644 --- a/packages/card/package.json +++ b/packages/card/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/card", - "version": "0.15.4", + "version": "0.15.5", "publishConfig": { "access": "public" }, @@ -46,7 +46,7 @@ "dependencies": { "@iliad-ui/asset": "^0.9.2", "@iliad-ui/base": "^0.12.2", - "@iliad-ui/checkbox": "^0.16.1", + "@iliad-ui/checkbox": "^0.16.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/quick-actions": "^0.9.2", "@iliad-ui/shared": "^0.19.2", diff --git a/packages/checkbox/CHANGELOG.md b/packages/checkbox/CHANGELOG.md index cc0b5ebd84b..199aad8d5b9 100644 --- a/packages/checkbox/CHANGELOG.md +++ b/packages/checkbox/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/checkbox@0.16.1...@iliad-ui/checkbox@0.16.2) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/checkbox + ## [0.16.1](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/checkbox@0.16.0...@iliad-ui/checkbox@0.16.1) (2022-11-11) **Note:** Version bump only for package @iliad-ui/checkbox diff --git a/packages/checkbox/package.json b/packages/checkbox/package.json index 83e87ec9ba5..d0357bc2a9d 100644 --- a/packages/checkbox/package.json +++ b/packages/checkbox/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/checkbox", - "version": "0.16.1", + "version": "0.16.2", "publishConfig": { "access": "public" }, @@ -46,7 +46,7 @@ "dependencies": { "@iliad-ui/base": "^0.12.2", "@iliad-ui/icon": "^0.17.2", - "@iliad-ui/icons-editor": "^0.13.0", + "@iliad-ui/icons-editor": "^0.14.0", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/icons-editor/CHANGELOG.md b/packages/icons-editor/CHANGELOG.md index b0908840859..ee9f1ab00c2 100644 --- a/packages/icons-editor/CHANGELOG.md +++ b/packages/icons-editor/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.14.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.13.0...@iliad-ui/icons-editor@0.14.0) (2022-12-09) + +### Features + +- icons update ([de8cb8a](https://github.com/gaoding-inc/iliad-ui/commit/de8cb8abae5238f207903b6a4de292f7478a6f66)) + # [0.13.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.12.0...@iliad-ui/icons-editor@0.13.0) (2022-11-11) ### Features diff --git a/packages/icons-editor/package.json b/packages/icons-editor/package.json index b937f2e8181..d498836da57 100644 --- a/packages/icons-editor/package.json +++ b/packages/icons-editor/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons-editor", - "version": "0.13.0", + "version": "0.14.0", "publishConfig": { "access": "public" }, diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index 22b9b4ebd0a..cc15ba38ac0 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.25.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.24.0...@iliad-ui/icons@0.25.0) (2022-12-09) + +### Features + +- icons update ([de8cb8a](https://github.com/gaoding-inc/iliad-ui/commit/de8cb8abae5238f207903b6a4de292f7478a6f66)) + # [0.24.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.23.1...@iliad-ui/icons@0.24.0) (2022-11-11) ### Features diff --git a/packages/icons/package.json b/packages/icons/package.json index 8f1023a9455..2473b1f136e 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons", - "version": "0.24.0", + "version": "0.25.0", "publishConfig": { "access": "public" }, diff --git a/packages/picker/CHANGELOG.md b/packages/picker/CHANGELOG.md index 1eaa121086e..66628045920 100644 --- a/packages/picker/CHANGELOG.md +++ b/packages/picker/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.14.6...@iliad-ui/picker@0.14.7) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/picker + ## [0.14.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.14.5...@iliad-ui/picker@0.14.6) (2022-11-11) **Note:** Version bump only for package @iliad-ui/picker diff --git a/packages/picker/package.json b/packages/picker/package.json index d417042fcd5..c9ca152077d 100644 --- a/packages/picker/package.json +++ b/packages/picker/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/picker", - "version": "0.14.6", + "version": "0.14.7", "publishConfig": { "access": "public" }, @@ -55,7 +55,7 @@ "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/menu": "^0.17.3", "@iliad-ui/overlay": "^0.18.3", - "@iliad-ui/popover": "^0.16.6", + "@iliad-ui/popover": "^0.16.7", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/popover/CHANGELOG.md b/packages/popover/CHANGELOG.md index 37a9f8079e1..a0e7909d75f 100644 --- a/packages/popover/CHANGELOG.md +++ b/packages/popover/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.16.6...@iliad-ui/popover@0.16.7) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/popover + ## [0.16.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.16.5...@iliad-ui/popover@0.16.6) (2022-11-11) **Note:** Version bump only for package @iliad-ui/popover diff --git a/packages/popover/package.json b/packages/popover/package.json index e5d8198885f..97d2933b002 100644 --- a/packages/popover/package.json +++ b/packages/popover/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/popover", - "version": "0.16.6", + "version": "0.16.7", "publishConfig": { "access": "public" }, @@ -47,7 +47,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/icons-editor": "^0.13.0", + "@iliad-ui/icons-editor": "^0.14.0", "@iliad-ui/overlay": "^0.18.3", "tslib": "^2.0.0" }, diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 2b6f1b73f15..fb69878d61b 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.20.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.20.6...@iliad-ui/react@0.20.7) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/react + ## [0.20.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.20.5...@iliad-ui/react@0.20.6) (2022-11-11) **Note:** Version bump only for package @iliad-ui/react diff --git a/packages/react/package.json b/packages/react/package.json index 2e036f7eca8..42a0cf19aee 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/react", - "version": "0.20.6", + "version": "0.20.7", "publishConfig": { "access": "public" }, @@ -42,8 +42,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/bundle": "^0.27.9", - "@iliad-ui/icons": "^0.24.0", + "@iliad-ui/bundle": "^0.27.10", + "@iliad-ui/icons": "^0.25.0", "@lit-labs/react": "^1.0.1", "@types/lodash": "^4.14.175", "@types/react": "^17.0.30", diff --git a/packages/split-button/CHANGELOG.md b/packages/split-button/CHANGELOG.md index 662f7632ac4..f87872967eb 100644 --- a/packages/split-button/CHANGELOG.md +++ b/packages/split-button/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.10.6...@iliad-ui/split-button@0.10.7) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/split-button + ## [0.10.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.10.5...@iliad-ui/split-button@0.10.6) (2022-11-11) **Note:** Version bump only for package @iliad-ui/split-button diff --git a/packages/split-button/package.json b/packages/split-button/package.json index aacc131f67b..ce981458db4 100644 --- a/packages/split-button/package.json +++ b/packages/split-button/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/split-button", - "version": "0.10.6", + "version": "0.10.7", "publishConfig": { "access": "public" }, @@ -52,7 +52,7 @@ "@iliad-ui/icons-ui": "^0.13.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/overlay": "^0.18.3", - "@iliad-ui/picker": "^0.14.6", + "@iliad-ui/picker": "^0.14.7", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/switch/CHANGELOG.md b/packages/switch/CHANGELOG.md index 35f5de06b94..1ad3f4c0982 100644 --- a/packages/switch/CHANGELOG.md +++ b/packages/switch/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/switch@0.12.4...@iliad-ui/switch@0.12.5) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/switch + ## [0.12.4](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/switch@0.12.3...@iliad-ui/switch@0.12.4) (2022-11-11) **Note:** Version bump only for package @iliad-ui/switch diff --git a/packages/switch/package.json b/packages/switch/package.json index 82e522928c8..365aa16b7d7 100644 --- a/packages/switch/package.json +++ b/packages/switch/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/switch", - "version": "0.12.4", + "version": "0.12.5", "publishConfig": { "access": "public" }, @@ -45,7 +45,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/checkbox": "^0.16.1", + "@iliad-ui/checkbox": "^0.16.2", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/projects/documentation/CHANGELOG.md b/projects/documentation/CHANGELOG.md index c9a684be43e..ce9f82db592 100644 --- a/projects/documentation/CHANGELOG.md +++ b/projects/documentation/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.41](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.40...documentation@0.1.41) (2022-12-09) + +**Note:** Version bump only for package documentation + ## [0.1.40](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.39...documentation@0.1.40) (2022-11-11) **Note:** Version bump only for package documentation diff --git a/projects/documentation/package.json b/projects/documentation/package.json index bc585e9e61f..ee73c9d5f97 100644 --- a/projects/documentation/package.json +++ b/projects/documentation/package.json @@ -1,6 +1,6 @@ { "name": "documentation", - "version": "0.1.40", + "version": "0.1.41", "private": true, "description": "The documentation site for Spectrum Web Components", "license": "Apache-2.0", @@ -25,7 +25,7 @@ "watch:serve": "wds --root-dir=dist --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.9", + "@iliad-ui/bundle": "^0.27.10", "@spectrum-css/table": "^4.0.5" }, "devDependencies": { diff --git a/projects/example-project-rollup/CHANGELOG.md b/projects/example-project-rollup/CHANGELOG.md index 39d8d99b7df..0fc0d4a4c88 100644 --- a/projects/example-project-rollup/CHANGELOG.md +++ b/projects/example-project-rollup/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.10](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.9...example-project-rollup@0.5.10) (2022-12-09) + +**Note:** Version bump only for package example-project-rollup + ## [0.5.9](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.8...example-project-rollup@0.5.9) (2022-11-11) **Note:** Version bump only for package example-project-rollup diff --git a/projects/example-project-rollup/package.json b/projects/example-project-rollup/package.json index ed9eb275688..24af260fe7d 100644 --- a/projects/example-project-rollup/package.json +++ b/projects/example-project-rollup/package.json @@ -1,6 +1,6 @@ { "name": "example-project-rollup", - "version": "0.5.9", + "version": "0.5.10", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with rollup.", "license": "Apache-2.0", @@ -20,13 +20,13 @@ "tsc:watch": "tsc --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.9", + "@iliad-ui/bundle": "^0.27.10", "@iliad-ui/button": "^0.24.0", "@iliad-ui/field-label": "^0.10.2", - "@iliad-ui/icons": "^0.24.0", - "@iliad-ui/icons-editor": "^0.13.0", + "@iliad-ui/icons": "^0.25.0", + "@iliad-ui/icons-editor": "^0.14.0", "@iliad-ui/menu": "^0.17.3", - "@iliad-ui/picker": "^0.14.6", + "@iliad-ui/picker": "^0.14.7", "@iliad-ui/styles": "^0.18.0" }, "devDependencies": { diff --git a/projects/example-project-webpack/CHANGELOG.md b/projects/example-project-webpack/CHANGELOG.md index 09ecac5a85a..65139a53e60 100644 --- a/projects/example-project-webpack/CHANGELOG.md +++ b/projects/example-project-webpack/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.6.10](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.9...example-project-webpack@1.6.10) (2022-12-09) + +**Note:** Version bump only for package example-project-webpack + ## [1.6.9](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.8...example-project-webpack@1.6.9) (2022-11-11) **Note:** Version bump only for package example-project-webpack diff --git a/projects/example-project-webpack/package.json b/projects/example-project-webpack/package.json index aa4559818c3..5708200c27d 100644 --- a/projects/example-project-webpack/package.json +++ b/projects/example-project-webpack/package.json @@ -1,6 +1,6 @@ { "name": "example-project-webpack", - "version": "1.6.9", + "version": "1.6.10", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with webpack.", "license": "Apache-2.0", @@ -15,8 +15,8 @@ "@iliad-ui/button": "^0.24.0", "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/menu": "^0.17.3", - "@iliad-ui/picker": "^0.14.6", - "@iliad-ui/react": "^0.20.6", + "@iliad-ui/picker": "^0.14.7", + "@iliad-ui/react": "^0.20.7", "@iliad-ui/styles": "^0.18.0", "lit": "^2.0.0" }, diff --git a/projects/story-decorator/CHANGELOG.md b/projects/story-decorator/CHANGELOG.md index ca5192396fd..8fa1d15bff7 100644 --- a/projects/story-decorator/CHANGELOG.md +++ b/projects/story-decorator/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.10.6...@iliad-ui/story-decorator@0.10.7) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/story-decorator + ## [0.10.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.10.5...@iliad-ui/story-decorator@0.10.6) (2022-11-11) **Note:** Version bump only for package @iliad-ui/story-decorator diff --git a/projects/story-decorator/package.json b/projects/story-decorator/package.json index 5c58d9456d4..dd708ef0ce7 100644 --- a/projects/story-decorator/package.json +++ b/projects/story-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/story-decorator", - "version": "0.10.6", + "version": "0.10.7", "publishConfig": { "access": "public" }, @@ -49,8 +49,8 @@ "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/menu": "^0.17.3", "@iliad-ui/overlay": "^0.18.3", - "@iliad-ui/picker": "^0.14.6", - "@iliad-ui/switch": "^0.12.4", + "@iliad-ui/picker": "^0.14.7", + "@iliad-ui/switch": "^0.12.5", "@iliad-ui/theme": "^0.15.3", "tslib": "^2.0.0" }, diff --git a/projects/vrt-compare/CHANGELOG.md b/projects/vrt-compare/CHANGELOG.md index 467962b8e89..861885919b2 100644 --- a/projects/vrt-compare/CHANGELOG.md +++ b/projects/vrt-compare/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.7.6...@iliad-ui/vrt-compare@0.7.7) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/vrt-compare + ## [0.7.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.7.5...@iliad-ui/vrt-compare@0.7.6) (2022-11-11) **Note:** Version bump only for package @iliad-ui/vrt-compare diff --git a/projects/vrt-compare/package.json b/projects/vrt-compare/package.json index 49b902a3dfd..13cde3d2b2f 100644 --- a/projects/vrt-compare/package.json +++ b/projects/vrt-compare/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/vrt-compare", - "version": "0.7.6", + "version": "0.7.7", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-bar": "^0.7.6", + "@iliad-ui/action-bar": "^0.7.7", "@iliad-ui/action-button": "^0.14.3", "@iliad-ui/action-group": "^0.12.3", "@iliad-ui/base": "^0.12.2", From 13a9582a50643a90acd2845ff036ba773c941143 Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Fri, 9 Dec 2022 16:11:09 +0800 Subject: [PATCH 27/28] =?UTF-8?q?feat:=20icons=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...te.ts => sp-icon-editor-loading-static.ts} | 6 +- ...=> sp-icon-editor-loading-white-static.ts} | 9 +- packages/icons-editor/src/data.json | 374 +++++++++--------- .../{IconLoading.ts => IconLoadingStatic.ts} | 8 +- ...dingWhite.ts => IconLoadingWhiteStatic.ts} | 8 +- packages/icons-editor/src/icons.ts | 4 +- .../icons/{Loading.ts => LoadingStatic.ts} | 5 +- ...{LoadingWhite.ts => LoadingWhiteStatic.ts} | 5 +- .../svg/{Loading.svg => LoadingStatic.svg} | 0 ...oadingWhite.svg => LoadingWhiteStatic.svg} | 0 packages/icons/src/icons-editor.svg.ts | 2 +- 11 files changed, 215 insertions(+), 206 deletions(-) rename packages/icons-editor/icons/{sp-icon-editor-loading-white.ts => sp-icon-editor-loading-static.ts} (78%) rename packages/icons-editor/icons/{sp-icon-editor-loading.ts => sp-icon-editor-loading-white-static.ts} (74%) rename packages/icons-editor/src/elements/{IconLoading.ts => IconLoadingStatic.ts} (81%) rename packages/icons-editor/src/elements/{IconLoadingWhite.ts => IconLoadingWhiteStatic.ts} (79%) rename packages/icons-editor/src/icons/{Loading.ts => LoadingStatic.ts} (92%) rename packages/icons-editor/src/icons/{LoadingWhite.ts => LoadingWhiteStatic.ts} (91%) rename packages/icons-editor/src/svg/{Loading.svg => LoadingStatic.svg} (100%) rename packages/icons-editor/src/svg/{LoadingWhite.svg => LoadingWhiteStatic.svg} (100%) diff --git a/packages/icons-editor/icons/sp-icon-editor-loading-white.ts b/packages/icons-editor/icons/sp-icon-editor-loading-static.ts similarity index 78% rename from packages/icons-editor/icons/sp-icon-editor-loading-white.ts rename to packages/icons-editor/icons/sp-icon-editor-loading-static.ts index 27f15a41a02..76a8bd8eb02 100644 --- a/packages/icons-editor/icons/sp-icon-editor-loading-white.ts +++ b/packages/icons-editor/icons/sp-icon-editor-loading-static.ts @@ -12,12 +12,12 @@ governing permissions and limitations under the License. */ import { iliadCustomElementsDefine } from '@iliad-ui/base'; -import { IconLoadingWhite } from '../src/elements/IconLoadingWhite.js'; +import { IconLoadingStatic } from '../src/elements/IconLoadingStatic.js'; -iliadCustomElementsDefine('sp-icon-editor-loading-white', IconLoadingWhite); +iliadCustomElementsDefine('sp-icon-editor-loading-static', IconLoadingStatic); declare global { interface HTMLElementTagNameMap { - 'sp-icon-editor-loading-white': IconLoadingWhite; + 'sp-icon-editor-loading-static': IconLoadingStatic; } } diff --git a/packages/icons-editor/icons/sp-icon-editor-loading.ts b/packages/icons-editor/icons/sp-icon-editor-loading-white-static.ts similarity index 74% rename from packages/icons-editor/icons/sp-icon-editor-loading.ts rename to packages/icons-editor/icons/sp-icon-editor-loading-white-static.ts index f3ec607a8b4..3f07dcd84b9 100644 --- a/packages/icons-editor/icons/sp-icon-editor-loading.ts +++ b/packages/icons-editor/icons/sp-icon-editor-loading-white-static.ts @@ -12,12 +12,15 @@ governing permissions and limitations under the License. */ import { iliadCustomElementsDefine } from '@iliad-ui/base'; -import { IconLoading } from '../src/elements/IconLoading.js'; +import { IconLoadingWhiteStatic } from '../src/elements/IconLoadingWhiteStatic.js'; -iliadCustomElementsDefine('sp-icon-editor-loading', IconLoading); +iliadCustomElementsDefine( + 'sp-icon-editor-loading-white-static', + IconLoadingWhiteStatic +); declare global { interface HTMLElementTagNameMap { - 'sp-icon-editor-loading': IconLoading; + 'sp-icon-editor-loading-white-static': IconLoadingWhiteStatic; } } diff --git a/packages/icons-editor/src/data.json b/packages/icons-editor/src/data.json index f6b727a49ba..c4b9c993785 100644 --- a/packages/icons-editor/src/data.json +++ b/packages/icons-editor/src/data.json @@ -7,7 +7,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b4988f53-1cf4-4400-9187-2549195e26e2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/84b8ffd0-272a-49fa-8134-7fde3e9ac02f" }, "25:28": { "name": "label_y", @@ -17,7 +17,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/642f2a2d-9897-4683-9221-311b2d47f13b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d0a39fe0-6076-41a8-ac73-03f9a0595e59" }, "382:510": { "name": "label_z", @@ -27,7 +27,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2a0316f8-eeec-4cb4-afb0-47f8966e3f23" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/55cafe9d-4158-401f-ba38-63f1b2d816e3" }, "91:383": { "name": "label_d", @@ -37,7 +37,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a9a9eb94-2edc-4f78-821f-d12c72422ebb" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9680143a-40e0-4ea3-affd-738a9d530cbf" }, "91:392": { "name": "label_v", @@ -47,7 +47,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9659a1c2-8ad3-4a2f-8996-b9b150cfbf4a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7c0308be-95da-437e-8f73-5b6d1601e8ec" }, "92:328": { "name": "label_c", @@ -57,7 +57,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7e6d3090-3339-4373-aa0e-7603f0dcb926" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4b9b416a-3cdd-4a2e-8ad1-a866aae9d87e" }, "97:478": { "name": "label_g", @@ -67,7 +67,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2b06d903-e3a1-4c56-b545-471431f4183f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7064e3ed-2207-4ea7-8cce-4ba41b471dca" }, "964:933": { "name": "unit", @@ -77,7 +77,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2a8a4706-22d0-44d4-ae0d-37fa3152a5d4" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f7062277-a544-40b4-8a9d-2e948ebf4771" }, "8:8": { "name": "command", @@ -87,7 +87,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6d13835e-964c-48f5-a0ab-e235e4d13118" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/652cc068-31c9-4ebd-a6cd-7ee45277773f" }, "97:457": { "name": "shift", @@ -97,7 +97,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ea65bc02-8d49-4237-a16c-935bfed3e9ea" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/daa01327-33cf-491f-aa3a-98b67c12139f" }, "350:2642": { "name": "option", @@ -107,7 +107,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/aa5357d8-0f93-48b3-b64f-637492bb2f2d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5b5b10c2-fa25-4332-b3b2-c507fb1f09ab" }, "9:30": { "name": "backspace", @@ -117,7 +117,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/077f23e8-e495-4292-8025-7a0d444da79d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/95931ada-2aef-4cbb-b677-85a4ea2a3c68" }, "326:546": { "name": "label_openbracket", @@ -127,7 +127,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/26472144-b34e-46f3-a0ed-cd7a07646edb" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/96c03554-f256-4b97-a7bd-253f712ad815" }, "326:536": { "name": "label_closebracket", @@ -137,7 +137,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3a3b5293-ef5f-45ab-8aae-0878f350c74e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2c71096a-a56f-4e7a-8024-ed81a0b5222d" }, "0:36": { "name": "format_left", @@ -147,7 +147,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2a7e6753-3cdd-4ac1-8d67-ab9732599b16" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/68a9aa5a-59aa-45be-8ee2-7fa42588afe7" }, "0:38": { "name": "format_center", @@ -157,7 +157,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3567bf0a-6d2a-42b6-9cf2-269e3e4f0cb5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7c04f089-8835-48b5-9439-6d71f98952a8" }, "0:40": { "name": "format_right", @@ -167,7 +167,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/957b5841-4368-4e3c-8fca-b4fdf777cce6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f5e393f6-7f1a-4889-b479-52c9ccbc99f0" }, "0:34": { "name": "format_justified", @@ -177,7 +177,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6642e766-5407-400c-9b69-f2bbe6085cba" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a0049d36-6e44-42e7-ab24-7b0f65f2fd96" }, "1054:953": { "name": "format_align_top", @@ -187,7 +187,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a11914f8-f7a0-44a5-8a1c-45c3f96a737f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/81ff1497-c54b-451b-905d-7a10a938ce56" }, "1054:982": { "name": "format_align_medium", @@ -197,7 +197,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7730ddf9-cc90-4daf-8dee-841d13ae12f8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c15d1f17-f385-4d7e-adf1-dac4c70491ce" }, "1054:894": { "name": "format_align_bottom", @@ -207,7 +207,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/35beb4f8-6f27-4c38-829b-d9f1ade6981c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fdfd02be-27ad-4c10-94d1-29977838725e" }, "0:28": { "name": "format_pacing-lines", @@ -217,7 +217,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/45230c84-1a34-4105-bf5a-1670d9e234ee" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7240c078-a4ce-46b8-994f-f1688197ddbf" }, "0:32": { "name": "format_spacing-letter", @@ -227,7 +227,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b68eb241-5aae-4928-a070-4dea268530f9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bd36514f-d4ce-48e7-9082-da3daae06100" }, "0:20": { "name": "text_underline", @@ -237,7 +237,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5de297c9-255b-4948-8743-b658eb698c48" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5cb11d7d-97cc-47d6-9803-3d7fbdb35955" }, "0:18": { "name": "text_italy", @@ -247,7 +247,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/56a70747-112b-4b74-b659-6d7e4cf6c5eb" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ef25331b-a4ca-4196-8219-eb10a96268ab" }, "0:24": { "name": "text_deleteline", @@ -257,7 +257,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/10814e60-a848-4452-93fa-628df3dfbf3d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ae32095b-8795-49e9-b0d6-8c4e58e4d0ec" }, "0:13": { "name": "text_bold", @@ -267,7 +267,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1ad4e66e-e511-44b0-be81-9cb006d93f72" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/232f0fcc-4a2a-4b7e-9a8d-f73534f46b9d" }, "20:109": { "name": "format_list_bulleted", @@ -277,7 +277,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/41c7c9aa-3803-4a93-a246-f999b54d39d8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4d6b7540-cdf1-4a0f-8bd0-5a99be268582" }, "20:113": { "name": "format_list_numbered", @@ -287,7 +287,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5025bd5e-ee55-456f-b393-270981e4f7e1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8d49f337-4906-4472-8d3b-80a51db3bcad" }, "20:131": { "name": "format_indent_decrease", @@ -297,7 +297,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a22124f1-5cd3-41fe-b544-115ae90816e8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/06783aff-7360-4a5e-8d3c-e3f3b6e58049" }, "20:135": { "name": "format_indent_increase", @@ -307,7 +307,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fd2226f8-681d-472f-a409-d5a1dfe8d85a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/11f364bd-fdd0-440d-a98e-8e63262c4722" }, "0:8": { "name": "text_scale", @@ -317,7 +317,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/890a6c83-3a11-4b77-ae1d-23e00fd0b234" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1dcea929-6ec1-4c9b-80e6-68270f9d2847" }, "323:573": { "name": "display", @@ -327,7 +327,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2c1badd4-a0ea-463f-838e-a6c447024a79" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/74eadb4c-500f-4e50-8c71-99e566f46474" }, "20:105": { "name": "none", @@ -337,7 +337,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7afab360-7ec0-4477-94b8-bfe95159e852" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0d5cffb0-1cd8-4484-97a0-98df58b7d29f" }, "36:87": { "name": "add", @@ -347,7 +347,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a56ba680-90b8-46d1-8c52-d776d12cb615" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/80ab45ea-d1ea-4a44-b8d9-23c22d26165c" }, "24:49": { "name": "remove", @@ -357,7 +357,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bdf22a3e-f215-4c4b-8dda-2dc9195c6bbb" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/336732af-ec0d-4cb5-b8af-716d32e8451c" }, "4:32": { "name": "close", @@ -367,7 +367,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f197c345-801e-4b99-921e-1186fe2a38da" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/05b40188-8c6d-415b-8dd4-bd9556e689eb" }, "51:236": { "name": "done", @@ -377,7 +377,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/18d2b815-b12c-467f-87a5-34b9ac9aa66d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7b814600-2913-41b2-9dba-fda52f9a5dbb" }, "902:739": { "name": "clear", @@ -387,7 +387,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/78ace455-da3e-4e91-a895-e7d9e2696a60" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ed448edb-0f9e-403b-9f6f-e57cfda7c8c8" }, "36:102": { "name": "menu", @@ -397,7 +397,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d56771d3-28ab-41af-b75b-47b61a018664" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1553d893-553a-44c4-9233-c7168ca34ef3" }, "36:98": { "name": "pages", @@ -407,7 +407,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cc951021-e1cb-4e35-aa9a-cecfd59e2a45" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2bdb4af2-1652-467a-aa0b-ba66ba0b55dd" }, "36:93": { "name": "layers", @@ -417,7 +417,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fc13c913-9b37-4982-bc3a-34602cf401df" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d926ec6a-a588-4423-9eab-8b0449930470" }, "36:88": { "name": "theme", @@ -427,7 +427,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cd943f1e-bad4-47e0-9776-4d2964209929" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cfab3b9b-0346-4454-b177-e9161f2eb51b" }, "10:9": { "name": "home", @@ -437,7 +437,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d166f9f7-7968-4526-830b-2b60dbbbbfec" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/680484fc-4113-4a78-8f25-835e24917dfd" }, "36:106": { "name": "desktop", @@ -447,7 +447,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2da188c3-b22f-473e-ba07-ba803abc8c36" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/57c237fe-fd3b-4947-91fb-05e11919b2dc" }, "36:110": { "name": "tablet_mac", @@ -457,7 +457,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8682ed72-2ad7-4b3a-9fbb-43350c965ee2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7a091455-c073-4cf3-a921-a78115d11813" }, "36:114": { "name": "smartphone", @@ -467,7 +467,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a4ef8296-124a-4f2f-9211-2d4a42736d5d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/77a746bf-0e77-4e16-9d18-81a22bf4ad2f" }, "37:203": { "name": "tune", @@ -477,7 +477,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/862e1927-67ef-4d61-a11b-d0d978c8a7ee" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/13750b7f-b3c4-403b-b027-ee714d881277" }, "36:132": { "name": "undo", @@ -487,7 +487,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ca7bcaf9-ef61-4c58-b638-8d91f90b2fce" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5ad3b598-e761-44c6-9631-b51e9fff56b2" }, "36:131": { "name": "redo", @@ -497,7 +497,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bd9aa892-f927-4000-8eae-3f75dcdc1549" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c5f0f3d9-dedb-453d-94ed-5c2cb6bba272" }, "932:766": { "name": "open_in_new", @@ -507,7 +507,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ae24e8b8-f79d-4756-b5a1-f0c7f83f1f09" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/24fe211a-f446-4d07-8414-8613be22516c" }, "510:619": { "name": "easeout_quad", @@ -517,7 +517,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6132dec3-a0c6-43ca-9e3f-1df6d0072831" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/086689dd-b4a1-45fb-b154-211fa6a8ca9e" }, "510:650": { "name": "easein_quad", @@ -527,7 +527,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4ba96626-0f43-491f-8327-a8bcb639b8cb" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/61d181c0-7e24-4d6d-a118-bef0a49ce2bd" }, "510:672": { "name": "easeout_cubic", @@ -537,7 +537,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e03de8aa-374f-440d-8c07-9f0f8e835882" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/86409936-10ee-478d-bb8e-ef60adc04226" }, "510:694": { "name": "easein_cubic", @@ -547,7 +547,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c782e03e-2289-4976-a7c7-8c224288a31c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/07f0151a-6587-49e1-8413-e5dd4956f1a0" }, "510:732": { "name": "easeinout_cubic", @@ -557,7 +557,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e6a8a4b4-e813-4eab-a01d-1ec9534c0ce8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2f544dd4-bb89-4c19-b943-637284a909ac" }, "510:754": { "name": "easeout_back", @@ -567,7 +567,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8c01a389-2fcf-4c9a-8f17-8ebf15afd797" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e0003415-64e0-46bf-84fb-bb4d91437de2" }, "510:776": { "name": "easeout_elastic", @@ -577,7 +577,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2a1b98e8-a1b2-4f82-8707-2d5f084fd9dc" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/98a92ad3-7eb1-45fd-847b-28e5a03e6dc6" }, "510:798": { "name": "easeout_bounce", @@ -587,7 +587,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5b94e7d9-a9a4-4843-b438-e9e30eb963c2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d9f064b8-092d-430f-83fd-b753a272d8cc" }, "511:661": { "name": "linear", @@ -597,7 +597,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/54695476-0ed7-46c9-8108-a3658138b10f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/35a16e89-4144-4168-bc6b-3db0bf88dbc7" }, "37:214": { "name": "text", @@ -607,7 +607,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7de03045-c270-41cc-a393-00acc6965580" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/830496ef-e295-493f-9195-252c3a3fa93d" }, "37:219": { "name": "paragraph", @@ -617,7 +617,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bf789563-b25d-4442-8dea-efea62569830" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/dabdbb6d-d1dc-4c34-a4d2-897794a229a2" }, "37:223": { "name": "image", @@ -627,7 +627,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3e2bbb6e-4a6e-4843-916d-6832fccad4ed" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d07bfea7-1d71-4d77-9207-6b534a407fd1" }, "37:227": { "name": "container", @@ -637,7 +637,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e6bf1504-4e18-410e-8edc-df06bc5518c5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3a4a59e6-c1f3-4057-9d62-4b755f7ad23d" }, "320:472": { "name": "layout_vert", @@ -647,7 +647,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6f0ef681-ed58-47be-889f-473de94d7b35" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/389344fa-eb61-4e23-a20c-f955c87ae1a5" }, "320:517": { "name": "layout_horz", @@ -657,7 +657,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e6d8bb47-2229-49c8-b00a-66654d6c1f82" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/759feab7-d1d5-45da-b872-a1f4de95cd36" }, "958:894": { "name": "layout_sliding", @@ -667,7 +667,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d1200d0d-3b98-4d0d-8258-08ed1027da22" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/947977de-0b02-4051-8a69-48cc1af33a7a" }, "959:958": { "name": "layout_wrap", @@ -677,7 +677,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8c059da5-fc9e-4a33-974a-0e9194bbccc6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2e426f62-da01-47c6-bdb6-a2f29bd5c4c5" }, "967:1005": { "name": "layout_pageturn", @@ -687,7 +687,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0ed8e16f-a0fd-4e93-8fe4-4bfc77db5351" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9d261b8a-3895-4f86-95d6-d9ee44e675cf" }, "959:999": { "name": "section", @@ -697,7 +697,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4c8b9425-d64e-4934-956f-6638b81019a3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a9888786-3c13-4d6d-966b-cd79d94202e1" }, "439:552": { "name": "materiel", @@ -707,7 +707,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5ebaa882-a398-4a95-b3d5-176c8b1beba7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3ccd67a7-2aa0-432f-9179-0ac0cf629319" }, "25:97": { "name": "arrow_left", @@ -717,7 +717,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a5c5e48c-fd54-4a27-87da-a225bffe3f22" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3dff9c53-5499-4a63-a7a6-e5c02c968e06" }, "25:117": { "name": "arrow_right", @@ -727,7 +727,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/606edf0a-37c6-4849-b2e0-4e4268203967" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c11949f9-e5c7-43f0-800c-9f8a4f1ebcc0" }, "37:207": { "name": "arrow_down_small", @@ -737,7 +737,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2c517924-63d2-4b2a-b21e-44a7977ffb81" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8e1edd36-7cb0-43bb-800e-19771cf2413b" }, "54:237": { "name": "arrow_right_small", @@ -747,7 +747,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/56ddefc2-1425-44f2-a77f-fbcd516583fa" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fdedfe9c-bac7-4e46-a70f-d0343abd3d0a" }, "83:353": { "name": "direction_down", @@ -757,7 +757,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ae337f94-3a7e-4e61-b1c7-4ae4c5e4b15a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fe0fbff0-768d-4010-8e0f-43dfba169ad0" }, "83:360": { "name": "direction_right", @@ -767,7 +767,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5518bb70-4105-49b4-98b4-9aa40a6f6c61" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6f455449-c77e-47b3-9a55-b24244033cb8" }, "91:351": { "name": "direction_up", @@ -777,7 +777,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2ddb63fa-69cb-4145-8c14-96cac42ec4d8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a98eef55-cfc2-4545-bc69-032059763a8e" }, "91:358": { "name": "direction_left", @@ -787,7 +787,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/606732ad-b074-4384-ab0d-5b8566016390" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/076236a4-da52-4058-bc5b-5f5929209186" }, "30:21": { "name": "slider_invisible", @@ -797,7 +797,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/57b260fb-97d0-4275-b8f9-ab701ec9246b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/40c7ba40-69cf-430c-aab3-a00508d12591" }, "406:539": { "name": "arrow_triangle", @@ -807,7 +807,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0b803516-95f4-4d2a-a17e-c3240b36a7e0" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c8bba9db-59a5-466f-9be8-6b0524e06ea8" }, "60:260": { "name": "page_header", @@ -817,7 +817,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/82ef7e75-2413-4552-9946-6f58881530b7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7eeaf6ab-87a7-4b9d-8aeb-1ca628a6e94a" }, "65:509": { "name": "page_footer", @@ -827,7 +827,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3470c3b6-0a36-4f87-b965-7cc7aa99ed78" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cabbb3b8-1a56-4459-9ed6-04356a7943de" }, "65:522": { "name": "video", @@ -837,7 +837,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e04a7caa-ab6c-462f-9828-f7a178a1c720" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/84401e4a-dde8-426a-8bee-0b76d075d76c" }, "65:550": { "name": "star", @@ -847,7 +847,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d93fcc16-9ad0-49a9-ba6e-881e40d26a51" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3b1d925e-f323-4a93-9b12-929aba3eee40" }, "66:335": { "name": "file_folder", @@ -857,7 +857,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3800a4de-5311-49e3-babf-03a8fb1d7d12" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1d004276-515c-42f7-8915-627974ddf5bf" }, "65:583": { "name": "contacts", @@ -867,7 +867,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/50dbca73-2302-4c3e-910a-b1f9480775fa" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/82f3eb05-2adf-429e-bf60-d8c076b0e116" }, "52:739": { "name": "rotate_left", @@ -877,7 +877,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cdb3c671-c090-412e-a874-4744179f0de1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/08e4b91c-10b5-45d9-bcb4-0369c8b3fe4b" }, "314:443": { "name": "width_fixed", @@ -887,7 +887,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/12a8fb0b-866c-4a37-8705-6ee1f91c6b61" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fa46db16-6b20-444b-be1f-e967386f9fe2" }, "314:416": { "name": "width_fill", @@ -897,7 +897,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/305eb78d-3282-4f45-a72d-3fd23e83a890" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8052486d-e37a-4227-a49f-21a3dda3da3a" }, "314:531": { "name": "width_hug", @@ -907,7 +907,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2eb8bc56-e26f-497e-bb27-ca991db98a00" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fcee97d7-c17c-473a-8d6e-21c110b85038" }, "314:518": { "name": "height_fixed", @@ -917,7 +917,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/48e5f683-2d04-4067-86d6-bcc3dea341d8" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/47ac56bf-1175-4693-b9fb-2bbb7ec33b35" }, "314:571": { "name": "height_fill", @@ -927,7 +927,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/875a0d3c-ee3b-4ebe-a319-0ff7146d93ae" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ac0fd073-63e6-4968-b6be-17226d0f14f3" }, "314:581": { "name": "height_hug", @@ -937,7 +937,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/088e2830-df63-49bf-9027-92584f8be726" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ae6cf591-a156-4646-8cda-55279a57133b" }, "10:22": { "name": "settings", @@ -947,7 +947,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/905bc21a-62e9-4f2f-9644-d5dbc7ebd4df" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/189f868b-3a2d-451d-a95c-54098f45be95" }, "922:781": { "name": "import", @@ -957,7 +957,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b6b4c507-b337-49ae-8122-cb46e793cbd0" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1728c272-4ea5-4a3c-b402-5fdbaa9e7b48" }, "10:117": { "name": "link", @@ -967,7 +967,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d6965e77-db83-49e9-be74-d4aec2831f70" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/00e6a905-f946-4ec3-bcd1-2ca89f09bccf" }, "21:46": { "name": "locked", @@ -977,7 +977,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f0f2efce-0332-4c92-877e-09a3789ea1e7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5ffad0a0-14eb-4bbc-bd61-a5505f934911" }, "21:54": { "name": "unlocked", @@ -987,7 +987,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e26fb3ca-d94b-470e-b13a-92f6df3ece9b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8290de6f-0be5-47d6-b8c3-c48616a9937e" }, "24:56": { "name": "eye", @@ -997,7 +997,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7d316f96-48c4-479e-a8b4-c6a575b03105" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cbe29e2b-b37d-457e-895b-f9c1ae3980a6" }, "52:645": { "name": "eye_off", @@ -1007,7 +1007,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/92483b97-c56d-43d9-9e74-6083f9094b47" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c37f901c-aaea-4988-abf3-7b3d82b7fc90" }, "65:301": { "name": "eye_display", @@ -1017,7 +1017,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fb38ef62-cba5-4b61-8989-a3c5b99c19ee" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8139d46f-67bc-4bb1-804f-4629c56c6e31" }, "301:399": { "name": "play", @@ -1027,7 +1027,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3c039fc9-68e5-4449-b794-cf61613e40b5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/96c92bc3-2994-4802-a1a1-483f548f3347" }, "410:565": { "name": "stop", @@ -1037,7 +1037,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2a32df7b-7a18-4ca6-bc4a-373995d98637" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f1e89b2e-e173-49f6-bdab-cd9889260539" }, "304:400": { "name": "edit", @@ -1047,7 +1047,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/13f301e6-2835-4b67-b654-f4f9df429104" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/788fd75e-a94e-4765-99d3-d6dd468fa767" }, "25:161": { "name": "colorpicker", @@ -1057,7 +1057,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6946bd16-3ca0-4ec2-94f4-02e3505ab574" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8c98c209-dd53-4e05-87a4-29997d388c65" }, "52:720": { "name": "animation", @@ -1067,7 +1067,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6080b790-5dcf-4e60-8bbd-f90fdca1a9c9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/530a38b1-e42e-4c42-80dc-563edafcd20d" }, "65:412": { "name": "crop", @@ -1077,7 +1077,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f31584a7-797e-41c1-9602-a2118eacd303" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2140e608-0730-440d-91d8-ac31cd8123ab" }, "65:417": { "name": "focus", @@ -1087,7 +1087,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fd3fab75-06ef-4220-bc41-906e7ef8891d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5e2cf43a-7800-4f27-b31c-c1d7d89fb67e" }, "52:592": { "name": "open_full", @@ -1097,7 +1097,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d166fc4d-9e79-4653-9f40-55fe8094a6dc" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3ffdc6cd-862c-4598-afab-000f3f610362" }, "52:682": { "name": "close_full", @@ -1107,7 +1107,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/edc51387-a8ee-4404-a5c7-ea01b4db2eeb" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8da04a17-45bc-4ee5-b820-59167aab2302" }, "409:535": { "name": "direction_center", @@ -1117,7 +1117,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7f879639-9c0b-4f99-9a85-51e26336f9fa" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/16c3cdc7-112e-4f5d-824e-8fb557488034" }, "18:14": { "name": "align_left", @@ -1127,7 +1127,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/fb13460e-d071-4fa1-9543-847a635d9430" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4803c941-688d-4b05-b5e0-a59e1c38b9ea" }, "18:83": { "name": "align_horiz_centers", @@ -1137,7 +1137,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b9ae262e-5b39-4c4a-99eb-41cab9439c3a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/51c5bf7c-8f10-4b9e-9440-69fa30564965" }, "18:94": { "name": "align_right", @@ -1147,7 +1147,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/338aea37-5025-48b5-8c0c-4519968d33e2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/31f48499-034e-4cc0-9e18-1e348dacff33" }, "18:92": { "name": "align_top", @@ -1157,7 +1157,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/941c8c51-0760-4fae-b0a2-6b11c40c093a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c6988cad-72ee-4b85-9a1a-0262a5fa5e9d" }, "18:90": { "name": "align_vert_centers", @@ -1167,7 +1167,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9f02e5a0-9831-42fd-a7bf-6e86f9e40f62" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e327167f-a89e-45f7-a649-d9e7e931fc01" }, "18:88": { "name": "align_bottom", @@ -1177,7 +1177,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7ad4f306-fe59-477c-898f-c9037108a5ab" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5c3952bd-e3cf-40df-8712-ec841d8384f0" }, "18:86": { "name": "align_arrange_horiz", @@ -1187,7 +1187,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/501d26ab-19f0-406d-b3e2-f8b3c1c52456" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8cff8965-c25b-4a08-a382-df8f01682495" }, "18:84": { "name": "align_arrange_vert", @@ -1197,7 +1197,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a33c0e60-7361-45cb-84b1-1a3941f41af7" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/24084930-d64e-4771-aa37-b636f733fea1" }, "315:701": { "name": "vert_left", @@ -1207,7 +1207,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d5b79958-e29e-444c-8b20-1110c30b46ea" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c3a3a0c1-61e2-4ae1-8c87-7c63b04f0ae1" }, "315:719": { "name": "vert_centers", @@ -1217,7 +1217,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6e9762e4-f515-484c-87e5-790ee382aa20" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d14261cb-e7d2-4560-8bac-d65eb306509c" }, "315:717": { "name": "vert_right", @@ -1227,7 +1227,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d7be71b6-432e-4cbf-ab79-1070087c8a5f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bac1cd27-0234-4de3-99cb-2ac19dee6f20" }, "315:715": { "name": "horiz_top", @@ -1237,7 +1237,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ac073dea-89ed-49da-b383-b672ea40ad60" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/39c946c8-3dee-48c8-83e4-1d44dafeccdc" }, "315:713": { "name": "horiz_centers", @@ -1247,7 +1247,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/738a7db4-0100-46d6-93a0-196276eea17e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/766923c6-7dd4-4282-95b7-a98b00c85959" }, "315:711": { "name": "horiz_bottom", @@ -1257,7 +1257,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5e9c352b-3ae8-4434-9b7b-e06fa0e410d1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/14766e00-b12b-4e42-b867-4890bcca7a47" }, "815:863": { "name": "file_outline", @@ -1267,7 +1267,7 @@ "description": "add, create, new, plus, +", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3ae20c49-d3f4-4cef-9343-a340353d0950" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a440644a-2242-4f0d-a62d-c2652ba96068" }, "815:869": { "name": "grid_outline", @@ -1277,7 +1277,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/af9475e2-4a6d-49ef-93cd-bb7951787ba9" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/64ba5a38-0e94-4e0a-9141-18d80c5a6454" }, "10:122": { "name": "help", @@ -1287,7 +1287,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7c3734b7-627d-4a82-8e84-10bd37f8a41f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2982cdfb-243e-4704-b366-8eb5a16107a8" }, "65:330": { "name": "check", @@ -1297,7 +1297,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/dd9e6628-a4cc-4f02-b353-f6d040244504" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/07ab9f9f-8d5c-4a22-b870-44f3bd208a9b" }, "65:350": { "name": "info", @@ -1307,7 +1307,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4282bec3-2501-4dae-812c-04d78efa8516" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0d769b8e-fa78-4b0f-b903-df31e4acb421" }, "65:373": { "name": "alert", @@ -1317,7 +1317,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a4032518-e1b2-4ee5-a14f-6fab1ed2abea" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e656f5ce-4214-4b9f-b54f-b878365f56bc" }, "108:396": { "name": "help_fill", @@ -1327,7 +1327,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9be00000-6932-4696-8403-b74e31d80f07" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e9ee4aa6-9c25-47e0-952f-81ad9624905f" }, "109:392": { "name": "check_fill", @@ -1337,7 +1337,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9b0afdec-dfb6-44b4-8548-c2f2ae4767af" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c9c22542-3897-4ec4-8067-6fc2498ed95b" }, "109:393": { "name": "info_fill", @@ -1347,7 +1347,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/a778d10f-2ed1-417e-ab25-1c36df2fb7e5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9901ad3b-9810-42ec-87b5-449a5bbea15d" }, "109:394": { "name": "alert_fill", @@ -1357,7 +1357,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/198af70a-8d21-48b7-ab21-ea44c67ca5ef" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8103ba3f-252a-40ef-97a8-ab8f3f797c21" }, "1577:955": { "name": "error_fill", @@ -1367,7 +1367,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/735bc37f-0c1f-4f1b-bec4-e414580c7b7c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/861b1bea-efff-4948-ba4b-cfd56bd1a8eb" }, "818:886": { "name": "radio_button_unchecked", @@ -1377,7 +1377,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/afa66aac-d29e-4c30-aa36-ac1a3d842c57" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ac291fbb-dea6-482c-9038-fb076ef158f7" }, "23:18": { "name": "corner", @@ -1387,7 +1387,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/75c817df-8804-40eb-b708-05e2c0819827" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/de0f793d-3ab9-47c9-89cf-312d8c0c22d6" }, "37:29": { "name": "corner_radius_top_left", @@ -1397,7 +1397,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ec276caf-a8fa-4111-8856-c2a8dba76d74" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/169d0d74-cca5-458d-9c1f-535c3852db2f" }, "37:35": { "name": "corner_radius_top_right", @@ -1407,7 +1407,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6bed2234-7181-430a-b5e1-ebddb9451686" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2aa8405a-8b94-433d-ac67-cecd15aee5d6" }, "37:45": { "name": "corner_radius_bottom_left", @@ -1417,7 +1417,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/3012a40b-5784-4700-abfe-1bb0ecfb0ac3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c4082f1d-9b8c-4cde-bf51-7c26f66fbb3b" }, "37:40": { "name": "corner_radius_bottom_right", @@ -1427,7 +1427,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bd092b28-96bc-4e23-9656-908e1555098f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/d1690800-cb3b-4dee-937c-5277c44e6c08" }, "953:784": { "name": "wrap", @@ -1437,7 +1437,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/241f0af6-4dd3-4661-af5d-54a503f2bcfc" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4b4f048b-d7a6-4a81-a31a-d12ab03d8f23" }, "955:831": { "name": "padding_independent", @@ -1447,7 +1447,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b9f08647-8126-4d79-9b1d-80dd9ffbfe0b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e9b0ef16-6234-4fb6-ac1a-69967b12d64d" }, "966:980": { "name": "padding", @@ -1457,7 +1457,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5738dd0b-9050-4e6a-b254-c8ae3d064b56" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6864259f-bad3-47a4-bb51-f58fe41ae07e" }, "954:847": { "name": "padding_left", @@ -1467,7 +1467,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6297be58-dcb7-4603-8727-461fded12c91" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/15027f7b-539d-418c-8bfb-587b9af630cf" }, "963:891": { "name": "padding_right", @@ -1477,7 +1477,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f06c9d9f-efbe-4d5a-a152-774f476cce35" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1f6b390f-7823-4fcf-ab11-17b68a0984a5" }, "954:884": { "name": "padding_top", @@ -1487,7 +1487,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/654c15f5-35a6-4c89-a3c1-0fc77372961a" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/199babfc-60a0-4bbd-8583-e57274f45210" }, "963:917": { "name": "padding_bottom", @@ -1497,7 +1497,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cdd7c77d-eac9-49c2-8a15-a227eecc2dc4" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/668382b9-6698-4bd9-9b91-89725027d8fb" }, "954:1003": { "name": "spacing_horiz", @@ -1507,7 +1507,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c5dca829-d85a-46ef-8b5b-943152607036" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4ad1ca97-a9fe-4f10-a335-4382794d69bc" }, "954:970": { "name": "spacing_vert", @@ -1517,7 +1517,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0a97c567-b738-4e10-bbb6-c778a89fb611" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/faa7f14c-2cc5-4ac1-a032-1e4e63e10047" }, "786:735": { "name": "style", @@ -1527,7 +1527,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2712bb46-5c98-4791-9501-270740f53b28" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/82a226d0-c508-4de3-876a-3b4e99cf7cff" }, "25:171": { "name": "more_horiz", @@ -1537,7 +1537,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6fdfcbfd-891d-4224-ae95-6d20208ed336" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9efebf08-8003-412b-8f7a-ed56d837c696" }, "24:18": { "name": "drag_handle", @@ -1547,7 +1547,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/90c3cc9f-84b6-4a9d-aa54-56b8d5b01d0b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0dd180c5-c165-4eef-85d6-751140914146" }, "10:102": { "name": "stop_circle", @@ -1557,7 +1557,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/703d23d4-65b0-4942-9da7-6023650ce823" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/76e63df7-996d-44ea-a369-78d8edfd615a" }, "1317:954": { "name": "publish", @@ -1567,7 +1567,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cea85396-30d8-4c87-b23f-9fdb34da967f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2f94dee7-ba0f-4a8c-bb54-017ac7e865ac" }, "10:109": { "name": "data_barchart", @@ -1577,7 +1577,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/68e0f0bc-9de8-4761-a9d5-715168094a74" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/092a1b59-0f1a-494e-a0b8-a3e243c522ed" }, "935:783": { "name": "figma", @@ -1587,7 +1587,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/443f2648-8829-4866-a494-5c4f2d73055c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/08479988-160d-4cb7-95f8-e8e8505b3a89" }, "402:510": { "name": "time", @@ -1597,7 +1597,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1e9d18ab-f239-4614-82e9-f27b7758f6c2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/30207c1f-d55c-4696-877a-3fea17960917" }, "924:780": { "name": "global", @@ -1607,7 +1607,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2e63d8c0-2e11-45b3-be00-65540266ca88" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5993b0b5-023d-4b0f-bf3b-bb0adeeaafe9" }, "1060:928": { "name": "earth", @@ -1617,7 +1617,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/e23a08fd-62d2-49f3-bd22-abc329c68a0c" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/96fc70e2-e22e-4c64-9956-29bc7c7b4f4c" }, "43:204": { "name": "cloud_off", @@ -1627,7 +1627,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/00d8760c-0d62-41ac-b6a2-492523214e8d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0056c637-fd57-492b-b06a-3faada56f3e4" }, "43:210": { "name": "cloud_done", @@ -1637,27 +1637,27 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b594fd1e-c5a8-4afe-8656-ff39c3751cf3" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f0010ee9-e201-46fd-bfe0-c73031bb2a18" }, "919:758": { - "name": "loading", + "name": "loading_static", "id": "919:758", "key": "7e8b891660d3ffd38214eaaee3a85e24e98a83fc", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/1a1e5530-5977-42c1-bd1f-ed00e8d5daca" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ad5de610-92f5-4a83-8790-3ecc18ef195f" }, "922:764": { - "name": "loading_white", + "name": "loading_white__static", "id": "922:764", "key": "8af2e44f5adb0123884e07edf280ed7c6da23040", "file": "RTJwK4z4uVvkxsLo6Fd3Yi", "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/b0a2e7fa-ba3f-41ed-8eae-7b56a5e58afa" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/82109cbb-946c-4e2f-b672-a5ce70fd37ed" }, "490:565": { "name": "fixed", @@ -1667,7 +1667,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/9f3a825f-04f1-46af-ac16-7113bd1422d5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6163771b-07a9-445d-b3a9-9e8cdcef0c57" }, "1065:957": { "name": " locate", @@ -1677,7 +1677,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ffcf2b7a-c011-4ba0-85c5-9d3c52eecbe4" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/ac847568-5d65-4314-bca4-12c08524c34e" }, "43:217": { "name": "qr_code", @@ -1687,7 +1687,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6a3721c4-2d65-4057-aa7e-e2c02a4ea244" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2393139b-e20d-4841-ba40-ecb09e6aeae5" }, "512:726": { "name": "mouse_Hover", @@ -1697,7 +1697,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/0423d3fe-6d4f-49dd-9b18-78442adad861" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6b95b54e-93c2-40b4-abe1-24490add1dfd" }, "403:511": { "name": "mouse_Click", @@ -1707,7 +1707,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/49abd161-5756-4734-aa7f-7b0333313250" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/c3a9e303-d2fc-4a5c-be92-3f49ccce77fe" }, "513:781": { "name": "scroll", @@ -1717,7 +1717,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/77c19a1e-09f8-4dcd-8e3c-a1f55226838f" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/107d1a5d-ec7e-4c63-886d-f372b8a446ee" }, "905:809": { "name": "event", @@ -1727,7 +1727,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/23f5e3b6-2ff8-4eee-b9d1-09367508b995" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f78df334-1747-4845-9633-ac3c92de9d65" }, "848:743": { "name": "trigger", @@ -1737,7 +1737,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/70ad6f8d-6c8f-4749-9d22-665f6644a184" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/57289905-66fb-48dc-bc19-99eb30bb990e" }, "907:783": { "name": "effect", @@ -1747,7 +1747,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/7cc3a86f-b0ff-43c2-b02b-070b85652b92" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/6f771dc5-0173-4fde-bf9d-1e0966bfef03" }, "514:891": { "name": "move", @@ -1757,7 +1757,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/4668e1ad-d015-4d59-aa55-dc713d69b7d1" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/df474a44-e792-4b60-b9fb-c2ff5a2e8b0e" }, "514:901": { "name": "scale", @@ -1767,7 +1767,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cea49045-2d86-4c5b-9615-511f5ac9b26e" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/02ca22cb-d9dd-4a52-9860-7f1ed281248d" }, "514:911": { "name": "skew", @@ -1777,7 +1777,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f745d8c9-8d07-4998-ab2e-684550d1eaf6" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2266a12d-e190-47e6-bc81-61ff648bd852" }, "404:540": { "name": "inspire", @@ -1787,7 +1787,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/32b20d8a-1b89-4c57-a28a-2f316780726b" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/5d6c0033-b365-44d8-bdc4-804ccfebaab7" }, "1313:928": { "name": "delete", @@ -1797,7 +1797,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/25539bd7-fa1e-40aa-9657-5707eb375cb2" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/2b240723-c81b-4dce-b01b-635f65c65b6d" }, "1314:992": { "name": "share", @@ -1807,7 +1807,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/95039cb6-e89f-4c50-a176-578a3dc73cbd" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/60d53c71-005f-4439-a577-f2bfbb56549c" }, "1314:1001": { "name": "copy", @@ -1817,7 +1817,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/26b56f7c-2c62-410f-b547-05f60a003b56" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/bfbe1da6-8575-459e-afe4-a9dbda3fc4dd" }, "1316:972": { "name": "tag", @@ -1827,7 +1827,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/8052f44e-de28-445b-b34e-9191a19536a5" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/96f29508-cc5b-4a7f-a8ab-bbfb71295f29" }, "1405:1016": { "name": "figma_static", @@ -1837,7 +1837,7 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/46445d06-77b0-495f-911d-6dec23a36804" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/cb35de86-0a3b-4bda-9079-7a8f33811c20" }, "1405:1066": { "name": "sketch_static", @@ -1847,6 +1847,6 @@ "description": "", "width": 24, "height": 24, - "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/321d740e-469b-4b20-954f-510bf614830d" + "image": "https://figma-alpha-api.s3.us-west-2.amazonaws.com/images/f1ec64e2-0f9c-41bc-80af-0aa0ea0127b9" } } diff --git a/packages/icons-editor/src/elements/IconLoading.ts b/packages/icons-editor/src/elements/IconLoadingStatic.ts similarity index 81% rename from packages/icons-editor/src/elements/IconLoading.ts rename to packages/icons-editor/src/elements/IconLoadingStatic.ts index 188a0dff5ad..d810b7f4383 100644 --- a/packages/icons-editor/src/elements/IconLoading.ts +++ b/packages/icons-editor/src/elements/IconLoadingStatic.ts @@ -13,15 +13,15 @@ governing permissions and limitations under the License. import { html, TemplateResult } from '@iliad-ui/base'; import { IconBase } from '@iliad-ui/icon'; -import { LoadingIcon } from '../icons/Loading.js'; +import { LoadingStaticIcon } from '../icons/LoadingStatic.js'; import { setCustomTemplateLiteralTag } from '../custom-tag.js'; /** - * @element sp-icon-editor-loading + * @element sp-icon-editor-loading-static */ -export class IconLoading extends IconBase { +export class IconLoadingStatic extends IconBase { protected render(): TemplateResult { setCustomTemplateLiteralTag(html); - return LoadingIcon() as TemplateResult; + return LoadingStaticIcon() as TemplateResult; } } diff --git a/packages/icons-editor/src/elements/IconLoadingWhite.ts b/packages/icons-editor/src/elements/IconLoadingWhiteStatic.ts similarity index 79% rename from packages/icons-editor/src/elements/IconLoadingWhite.ts rename to packages/icons-editor/src/elements/IconLoadingWhiteStatic.ts index 0f7db87c4b2..51ffc4aaf4e 100644 --- a/packages/icons-editor/src/elements/IconLoadingWhite.ts +++ b/packages/icons-editor/src/elements/IconLoadingWhiteStatic.ts @@ -13,15 +13,15 @@ governing permissions and limitations under the License. import { html, TemplateResult } from '@iliad-ui/base'; import { IconBase } from '@iliad-ui/icon'; -import { LoadingWhiteIcon } from '../icons/LoadingWhite.js'; +import { LoadingWhiteStaticIcon } from '../icons/LoadingWhiteStatic.js'; import { setCustomTemplateLiteralTag } from '../custom-tag.js'; /** - * @element sp-icon-editor-loading-white + * @element sp-icon-editor-loading-white-static */ -export class IconLoadingWhite extends IconBase { +export class IconLoadingWhiteStatic extends IconBase { protected render(): TemplateResult { setCustomTemplateLiteralTag(html); - return LoadingWhiteIcon() as TemplateResult; + return LoadingWhiteStaticIcon() as TemplateResult; } } diff --git a/packages/icons-editor/src/icons.ts b/packages/icons-editor/src/icons.ts index 87a6a2efbec..94855dc928d 100644 --- a/packages/icons-editor/src/icons.ts +++ b/packages/icons-editor/src/icons.ts @@ -125,8 +125,8 @@ export { LayoutVertIcon } from './icons/LayoutVert.js'; export { LayoutWrapIcon } from './icons/LayoutWrap.js'; export { LinearIcon } from './icons/Linear.js'; export { LinkIcon } from './icons/Link.js'; -export { LoadingIcon } from './icons/Loading.js'; -export { LoadingWhiteIcon } from './icons/LoadingWhite.js'; +export { LoadingStaticIcon } from './icons/LoadingStatic.js'; +export { LoadingWhiteStaticIcon } from './icons/LoadingWhiteStatic.js'; export { LocateIcon } from './icons/Locate.js'; export { LockedIcon } from './icons/Locked.js'; export { MaterielIcon } from './icons/Materiel.js'; diff --git a/packages/icons-editor/src/icons/Loading.ts b/packages/icons-editor/src/icons/LoadingStatic.ts similarity index 92% rename from packages/icons-editor/src/icons/Loading.ts rename to packages/icons-editor/src/icons/LoadingStatic.ts index 6c49d78be2a..2b7770aa6da 100644 --- a/packages/icons-editor/src/icons/Loading.ts +++ b/packages/icons-editor/src/icons/LoadingStatic.ts @@ -13,12 +13,13 @@ governing permissions and limitations under the License. import { tag as html, TemplateResult } from '../custom-tag.js'; export { setCustomTemplateLiteralTag } from '../custom-tag.js'; -export const LoadingIcon = (): string | TemplateResult => { +export const LoadingStaticIcon = (): string | TemplateResult => { return html` @@ -26,6 +27,7 @@ export const LoadingIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21ZM19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 8.13401 8.13401 5 12 5C15.866 5 19 8.13401 19 12Z" + fill="url(#paint0_angular_919_758)" /> @@ -44,6 +46,7 @@ export const LoadingIcon = (): string | TemplateResult => { diff --git a/packages/icons-editor/src/icons/LoadingWhite.ts b/packages/icons-editor/src/icons/LoadingWhiteStatic.ts similarity index 91% rename from packages/icons-editor/src/icons/LoadingWhite.ts rename to packages/icons-editor/src/icons/LoadingWhiteStatic.ts index 8824567b1bc..3c269a5b654 100644 --- a/packages/icons-editor/src/icons/LoadingWhite.ts +++ b/packages/icons-editor/src/icons/LoadingWhiteStatic.ts @@ -13,12 +13,13 @@ governing permissions and limitations under the License. import { tag as html, TemplateResult } from '../custom-tag.js'; export { setCustomTemplateLiteralTag } from '../custom-tag.js'; -export const LoadingWhiteIcon = (): string | TemplateResult => { +export const LoadingWhiteStaticIcon = (): string | TemplateResult => { return html` @@ -26,6 +27,7 @@ export const LoadingWhiteIcon = (): string | TemplateResult => { fill-rule="evenodd" clip-rule="evenodd" d="M12 21C16.9706 21 21 16.9706 21 12C21 7.02944 16.9706 3 12 3C7.02944 3 3 7.02944 3 12C3 16.9706 7.02944 21 12 21ZM19 12C19 15.866 15.866 19 12 19C8.13401 19 5 15.866 5 12C5 8.13401 8.13401 5 12 5C15.866 5 19 8.13401 19 12Z" + fill="url(#paint0_angular_922_764)" /> @@ -44,6 +46,7 @@ export const LoadingWhiteIcon = (): string | TemplateResult => { diff --git a/packages/icons-editor/src/svg/Loading.svg b/packages/icons-editor/src/svg/LoadingStatic.svg similarity index 100% rename from packages/icons-editor/src/svg/Loading.svg rename to packages/icons-editor/src/svg/LoadingStatic.svg diff --git a/packages/icons-editor/src/svg/LoadingWhite.svg b/packages/icons-editor/src/svg/LoadingWhiteStatic.svg similarity index 100% rename from packages/icons-editor/src/svg/LoadingWhite.svg rename to packages/icons-editor/src/svg/LoadingWhiteStatic.svg diff --git a/packages/icons/src/icons-editor.svg.ts b/packages/icons/src/icons-editor.svg.ts index 1dcbd7765f3..7a3a4896929 100644 --- a/packages/icons/src/icons-editor.svg.ts +++ b/packages/icons/src/icons-editor.svg.ts @@ -11,4 +11,4 @@ OF ANY KIND, either express or implied. See the License for the specific languag governing permissions and limitations under the License. */ import { svg } from '@iliad-ui/base'; -export default svg``; +export default svg``; From 339e6332db2aacadbeed208b20477618e48d395d Mon Sep 17 00:00:00 2001 From: zzuzsj Date: Fri, 9 Dec 2022 16:26:17 +0800 Subject: [PATCH 28/28] chore: release new versions - @iliad-ui/action-bar@0.7.8 - @iliad-ui/action-menu@0.16.8 - @iliad-ui/bundle@0.27.11 - @iliad-ui/card@0.15.6 - @iliad-ui/checkbox@0.16.3 - @iliad-ui/icons-editor@0.15.0 - @iliad-ui/icons@0.26.0 - @iliad-ui/picker@0.14.8 - @iliad-ui/popover@0.16.8 - @iliad-ui/react@0.20.8 - @iliad-ui/split-button@0.10.8 - @iliad-ui/switch@0.12.6 - documentation@0.1.42 - example-project-rollup@0.5.11 - example-project-webpack@1.6.11 - @iliad-ui/story-decorator@0.10.8 - @iliad-ui/vrt-compare@0.7.8 --- packages/action-bar/CHANGELOG.md | 4 ++++ packages/action-bar/package.json | 4 ++-- packages/action-menu/CHANGELOG.md | 4 ++++ packages/action-menu/package.json | 4 ++-- packages/bundle/CHANGELOG.md | 4 ++++ packages/bundle/package.json | 22 +++++++++---------- packages/card/CHANGELOG.md | 4 ++++ packages/card/package.json | 4 ++-- packages/checkbox/CHANGELOG.md | 4 ++++ packages/checkbox/package.json | 4 ++-- packages/icons-editor/CHANGELOG.md | 6 +++++ packages/icons-editor/package.json | 2 +- packages/icons/CHANGELOG.md | 6 +++++ packages/icons/package.json | 2 +- packages/picker/CHANGELOG.md | 4 ++++ packages/picker/package.json | 4 ++-- packages/popover/CHANGELOG.md | 4 ++++ packages/popover/package.json | 4 ++-- packages/react/CHANGELOG.md | 4 ++++ packages/react/package.json | 6 ++--- packages/split-button/CHANGELOG.md | 4 ++++ packages/split-button/package.json | 4 ++-- packages/switch/CHANGELOG.md | 4 ++++ packages/switch/package.json | 4 ++-- projects/documentation/CHANGELOG.md | 4 ++++ projects/documentation/package.json | 4 ++-- projects/example-project-rollup/CHANGELOG.md | 4 ++++ projects/example-project-rollup/package.json | 10 ++++----- projects/example-project-webpack/CHANGELOG.md | 4 ++++ projects/example-project-webpack/package.json | 6 ++--- projects/story-decorator/CHANGELOG.md | 4 ++++ projects/story-decorator/package.json | 6 ++--- projects/vrt-compare/CHANGELOG.md | 4 ++++ projects/vrt-compare/package.json | 4 ++-- 34 files changed, 119 insertions(+), 47 deletions(-) diff --git a/packages/action-bar/CHANGELOG.md b/packages/action-bar/CHANGELOG.md index 3860ad54761..773baad3cc4 100644 --- a/packages/action-bar/CHANGELOG.md +++ b/packages/action-bar/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.8](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.7.7...@iliad-ui/action-bar@0.7.8) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/action-bar + ## [0.7.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-bar@0.7.6...@iliad-ui/action-bar@0.7.7) (2022-12-09) **Note:** Version bump only for package @iliad-ui/action-bar diff --git a/packages/action-bar/package.json b/packages/action-bar/package.json index a56706b04b7..6d6b5104f01 100644 --- a/packages/action-bar/package.json +++ b/packages/action-bar/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-bar", - "version": "0.7.7", + "version": "0.7.8", "publishConfig": { "access": "public" }, @@ -45,7 +45,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/popover": "^0.16.7", + "@iliad-ui/popover": "^0.16.8", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/action-menu/CHANGELOG.md b/packages/action-menu/CHANGELOG.md index 15a674f042e..e463643c15f 100644 --- a/packages/action-menu/CHANGELOG.md +++ b/packages/action-menu/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.8](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.16.7...@iliad-ui/action-menu@0.16.8) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/action-menu + ## [0.16.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/action-menu@0.16.6...@iliad-ui/action-menu@0.16.7) (2022-12-09) **Note:** Version bump only for package @iliad-ui/action-menu diff --git a/packages/action-menu/package.json b/packages/action-menu/package.json index b5c87ac7311..fcba24df07c 100644 --- a/packages/action-menu/package.json +++ b/packages/action-menu/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/action-menu", - "version": "0.16.7", + "version": "0.16.8", "publishConfig": { "access": "public" }, @@ -51,7 +51,7 @@ "@iliad-ui/icon": "^0.17.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/menu": "^0.17.3", - "@iliad-ui/picker": "^0.14.7", + "@iliad-ui/picker": "^0.14.8", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/bundle/CHANGELOG.md b/packages/bundle/CHANGELOG.md index 9cdd9e8227a..7871584a28d 100644 --- a/packages/bundle/CHANGELOG.md +++ b/packages/bundle/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.27.11](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.10...@iliad-ui/bundle@0.27.11) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/bundle + ## [0.27.10](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/bundle@0.27.9...@iliad-ui/bundle@0.27.10) (2022-12-09) **Note:** Version bump only for package @iliad-ui/bundle diff --git a/packages/bundle/package.json b/packages/bundle/package.json index a66ab58723f..6d3783567b2 100644 --- a/packages/bundle/package.json +++ b/packages/bundle/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/bundle", - "version": "0.27.10", + "version": "0.27.11", "publishConfig": { "access": "public" }, @@ -47,18 +47,18 @@ ], "dependencies": { "@iliad-ui/accordion": "^0.9.2", - "@iliad-ui/action-bar": "^0.7.7", + "@iliad-ui/action-bar": "^0.7.8", "@iliad-ui/action-button": "^0.14.3", "@iliad-ui/action-group": "^0.12.3", - "@iliad-ui/action-menu": "^0.16.7", + "@iliad-ui/action-menu": "^0.16.8", "@iliad-ui/asset": "^0.9.2", "@iliad-ui/avatar": "^0.14.2", "@iliad-ui/banner": "^0.13.2", "@iliad-ui/breadcrumb": "^0.2.2", "@iliad-ui/button": "^0.24.0", "@iliad-ui/button-group": "^0.11.2", - "@iliad-ui/card": "^0.15.5", - "@iliad-ui/checkbox": "^0.16.2", + "@iliad-ui/card": "^0.15.6", + "@iliad-ui/checkbox": "^0.16.3", "@iliad-ui/coachmark": "^0.11.2", "@iliad-ui/color-area": "^0.9.2", "@iliad-ui/color-handle": "^0.6.2", @@ -71,8 +71,8 @@ "@iliad-ui/field-group": "^0.8.2", "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/icon": "^0.17.2", - "@iliad-ui/icons": "^0.25.0", - "@iliad-ui/icons-editor": "^0.14.0", + "@iliad-ui/icons": "^0.26.0", + "@iliad-ui/icons-editor": "^0.15.0", "@iliad-ui/icons-ui": "^0.13.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/iconset": "^0.13.2", @@ -82,8 +82,8 @@ "@iliad-ui/meter": "^0.9.2", "@iliad-ui/number-field": "^0.9.3", "@iliad-ui/overlay": "^0.18.3", - "@iliad-ui/picker": "^0.14.7", - "@iliad-ui/popover": "^0.16.7", + "@iliad-ui/picker": "^0.14.8", + "@iliad-ui/popover": "^0.16.8", "@iliad-ui/progress-bar": "^0.8.2", "@iliad-ui/progress-circle": "^0.7.2", "@iliad-ui/quick-actions": "^0.9.2", @@ -91,10 +91,10 @@ "@iliad-ui/search": "^0.13.3", "@iliad-ui/sidenav": "^0.15.2", "@iliad-ui/slider": "^0.18.3", - "@iliad-ui/split-button": "^0.10.7", + "@iliad-ui/split-button": "^0.10.8", "@iliad-ui/split-view": "^0.9.2", "@iliad-ui/status-light": "^0.13.2", - "@iliad-ui/switch": "^0.12.5", + "@iliad-ui/switch": "^0.12.6", "@iliad-ui/tabs": "^0.13.2", "@iliad-ui/tags": "^0.13.3", "@iliad-ui/textfield": "^0.15.2", diff --git a/packages/card/CHANGELOG.md b/packages/card/CHANGELOG.md index 491815475e7..cf78f87411e 100644 --- a/packages/card/CHANGELOG.md +++ b/packages/card/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.15.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/card@0.15.5...@iliad-ui/card@0.15.6) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/card + ## [0.15.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/card@0.15.4...@iliad-ui/card@0.15.5) (2022-12-09) **Note:** Version bump only for package @iliad-ui/card diff --git a/packages/card/package.json b/packages/card/package.json index ad5545add77..d055ffb1edb 100644 --- a/packages/card/package.json +++ b/packages/card/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/card", - "version": "0.15.5", + "version": "0.15.6", "publishConfig": { "access": "public" }, @@ -46,7 +46,7 @@ "dependencies": { "@iliad-ui/asset": "^0.9.2", "@iliad-ui/base": "^0.12.2", - "@iliad-ui/checkbox": "^0.16.2", + "@iliad-ui/checkbox": "^0.16.3", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/quick-actions": "^0.9.2", "@iliad-ui/shared": "^0.19.2", diff --git a/packages/checkbox/CHANGELOG.md b/packages/checkbox/CHANGELOG.md index 199aad8d5b9..0f783a44ddb 100644 --- a/packages/checkbox/CHANGELOG.md +++ b/packages/checkbox/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.3](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/checkbox@0.16.2...@iliad-ui/checkbox@0.16.3) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/checkbox + ## [0.16.2](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/checkbox@0.16.1...@iliad-ui/checkbox@0.16.2) (2022-12-09) **Note:** Version bump only for package @iliad-ui/checkbox diff --git a/packages/checkbox/package.json b/packages/checkbox/package.json index d0357bc2a9d..9d7eea8a6a9 100644 --- a/packages/checkbox/package.json +++ b/packages/checkbox/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/checkbox", - "version": "0.16.2", + "version": "0.16.3", "publishConfig": { "access": "public" }, @@ -46,7 +46,7 @@ "dependencies": { "@iliad-ui/base": "^0.12.2", "@iliad-ui/icon": "^0.17.2", - "@iliad-ui/icons-editor": "^0.14.0", + "@iliad-ui/icons-editor": "^0.15.0", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/icons-editor/CHANGELOG.md b/packages/icons-editor/CHANGELOG.md index ee9f1ab00c2..654ddcc6cec 100644 --- a/packages/icons-editor/CHANGELOG.md +++ b/packages/icons-editor/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.15.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.14.0...@iliad-ui/icons-editor@0.15.0) (2022-12-09) + +### Features + +- icons 更新 ([13a9582](https://github.com/gaoding-inc/iliad-ui/commit/13a9582a50643a90acd2845ff036ba773c941143)) + # [0.14.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons-editor@0.13.0...@iliad-ui/icons-editor@0.14.0) (2022-12-09) ### Features diff --git a/packages/icons-editor/package.json b/packages/icons-editor/package.json index d498836da57..c93ff68ba67 100644 --- a/packages/icons-editor/package.json +++ b/packages/icons-editor/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons-editor", - "version": "0.14.0", + "version": "0.15.0", "publishConfig": { "access": "public" }, diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index cc15ba38ac0..5c146da1e51 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.26.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.25.0...@iliad-ui/icons@0.26.0) (2022-12-09) + +### Features + +- icons 更新 ([13a9582](https://github.com/gaoding-inc/iliad-ui/commit/13a9582a50643a90acd2845ff036ba773c941143)) + # [0.25.0](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/icons@0.24.0...@iliad-ui/icons@0.25.0) (2022-12-09) ### Features diff --git a/packages/icons/package.json b/packages/icons/package.json index 2473b1f136e..31ada220aca 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/icons", - "version": "0.25.0", + "version": "0.26.0", "publishConfig": { "access": "public" }, diff --git a/packages/picker/CHANGELOG.md b/packages/picker/CHANGELOG.md index 66628045920..6c394b089b4 100644 --- a/packages/picker/CHANGELOG.md +++ b/packages/picker/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.14.8](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.14.7...@iliad-ui/picker@0.14.8) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/picker + ## [0.14.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/picker@0.14.6...@iliad-ui/picker@0.14.7) (2022-12-09) **Note:** Version bump only for package @iliad-ui/picker diff --git a/packages/picker/package.json b/packages/picker/package.json index c9ca152077d..b9ead4f3a36 100644 --- a/packages/picker/package.json +++ b/packages/picker/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/picker", - "version": "0.14.7", + "version": "0.14.8", "publishConfig": { "access": "public" }, @@ -55,7 +55,7 @@ "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/menu": "^0.17.3", "@iliad-ui/overlay": "^0.18.3", - "@iliad-ui/popover": "^0.16.7", + "@iliad-ui/popover": "^0.16.8", "@iliad-ui/shared": "^0.19.2", "tslib": "^2.0.0" }, diff --git a/packages/popover/CHANGELOG.md b/packages/popover/CHANGELOG.md index a0e7909d75f..007cf1dede2 100644 --- a/packages/popover/CHANGELOG.md +++ b/packages/popover/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.16.8](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.16.7...@iliad-ui/popover@0.16.8) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/popover + ## [0.16.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/popover@0.16.6...@iliad-ui/popover@0.16.7) (2022-12-09) **Note:** Version bump only for package @iliad-ui/popover diff --git a/packages/popover/package.json b/packages/popover/package.json index 97d2933b002..e6ba0229146 100644 --- a/packages/popover/package.json +++ b/packages/popover/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/popover", - "version": "0.16.7", + "version": "0.16.8", "publishConfig": { "access": "public" }, @@ -47,7 +47,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/icons-editor": "^0.14.0", + "@iliad-ui/icons-editor": "^0.15.0", "@iliad-ui/overlay": "^0.18.3", "tslib": "^2.0.0" }, diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index fb69878d61b..71b5fc3bdf8 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.20.8](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.20.7...@iliad-ui/react@0.20.8) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/react + ## [0.20.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/react@0.20.6...@iliad-ui/react@0.20.7) (2022-12-09) **Note:** Version bump only for package @iliad-ui/react diff --git a/packages/react/package.json b/packages/react/package.json index 42a0cf19aee..07901d64428 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/react", - "version": "0.20.7", + "version": "0.20.8", "publishConfig": { "access": "public" }, @@ -42,8 +42,8 @@ "lit-html" ], "dependencies": { - "@iliad-ui/bundle": "^0.27.10", - "@iliad-ui/icons": "^0.25.0", + "@iliad-ui/bundle": "^0.27.11", + "@iliad-ui/icons": "^0.26.0", "@lit-labs/react": "^1.0.1", "@types/lodash": "^4.14.175", "@types/react": "^17.0.30", diff --git a/packages/split-button/CHANGELOG.md b/packages/split-button/CHANGELOG.md index f87872967eb..204d31d1603 100644 --- a/packages/split-button/CHANGELOG.md +++ b/packages/split-button/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.8](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.10.7...@iliad-ui/split-button@0.10.8) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/split-button + ## [0.10.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/split-button@0.10.6...@iliad-ui/split-button@0.10.7) (2022-12-09) **Note:** Version bump only for package @iliad-ui/split-button diff --git a/packages/split-button/package.json b/packages/split-button/package.json index ce981458db4..7ca2709ac49 100644 --- a/packages/split-button/package.json +++ b/packages/split-button/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/split-button", - "version": "0.10.7", + "version": "0.10.8", "publishConfig": { "access": "public" }, @@ -52,7 +52,7 @@ "@iliad-ui/icons-ui": "^0.13.2", "@iliad-ui/icons-workflow": "^0.13.2", "@iliad-ui/overlay": "^0.18.3", - "@iliad-ui/picker": "^0.14.7", + "@iliad-ui/picker": "^0.14.8", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/packages/switch/CHANGELOG.md b/packages/switch/CHANGELOG.md index 1ad3f4c0982..ef7e45f3cfe 100644 --- a/packages/switch/CHANGELOG.md +++ b/packages/switch/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.12.6](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/switch@0.12.5...@iliad-ui/switch@0.12.6) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/switch + ## [0.12.5](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/switch@0.12.4...@iliad-ui/switch@0.12.5) (2022-12-09) **Note:** Version bump only for package @iliad-ui/switch diff --git a/packages/switch/package.json b/packages/switch/package.json index 365aa16b7d7..f56638f19c8 100644 --- a/packages/switch/package.json +++ b/packages/switch/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/switch", - "version": "0.12.5", + "version": "0.12.6", "publishConfig": { "access": "public" }, @@ -45,7 +45,7 @@ ], "dependencies": { "@iliad-ui/base": "^0.12.2", - "@iliad-ui/checkbox": "^0.16.2", + "@iliad-ui/checkbox": "^0.16.3", "tslib": "^2.0.0" }, "devDependencies": { diff --git a/projects/documentation/CHANGELOG.md b/projects/documentation/CHANGELOG.md index ce9f82db592..86cb7382b53 100644 --- a/projects/documentation/CHANGELOG.md +++ b/projects/documentation/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.1.42](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.41...documentation@0.1.42) (2022-12-09) + +**Note:** Version bump only for package documentation + ## [0.1.41](https://github.com/zzuzsj/iliad-ui/compare/documentation@0.1.40...documentation@0.1.41) (2022-12-09) **Note:** Version bump only for package documentation diff --git a/projects/documentation/package.json b/projects/documentation/package.json index ee73c9d5f97..b5b986d128f 100644 --- a/projects/documentation/package.json +++ b/projects/documentation/package.json @@ -1,6 +1,6 @@ { "name": "documentation", - "version": "0.1.41", + "version": "0.1.42", "private": true, "description": "The documentation site for Spectrum Web Components", "license": "Apache-2.0", @@ -25,7 +25,7 @@ "watch:serve": "wds --root-dir=dist --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.10", + "@iliad-ui/bundle": "^0.27.11", "@spectrum-css/table": "^4.0.5" }, "devDependencies": { diff --git a/projects/example-project-rollup/CHANGELOG.md b/projects/example-project-rollup/CHANGELOG.md index 0fc0d4a4c88..76abdb11aea 100644 --- a/projects/example-project-rollup/CHANGELOG.md +++ b/projects/example-project-rollup/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.5.11](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.10...example-project-rollup@0.5.11) (2022-12-09) + +**Note:** Version bump only for package example-project-rollup + ## [0.5.10](https://github.com/zzuzsj/iliad-ui/compare/example-project-rollup@0.5.9...example-project-rollup@0.5.10) (2022-12-09) **Note:** Version bump only for package example-project-rollup diff --git a/projects/example-project-rollup/package.json b/projects/example-project-rollup/package.json index 24af260fe7d..bddcee29748 100644 --- a/projects/example-project-rollup/package.json +++ b/projects/example-project-rollup/package.json @@ -1,6 +1,6 @@ { "name": "example-project-rollup", - "version": "0.5.10", + "version": "0.5.11", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with rollup.", "license": "Apache-2.0", @@ -20,13 +20,13 @@ "tsc:watch": "tsc --watch" }, "dependencies": { - "@iliad-ui/bundle": "^0.27.10", + "@iliad-ui/bundle": "^0.27.11", "@iliad-ui/button": "^0.24.0", "@iliad-ui/field-label": "^0.10.2", - "@iliad-ui/icons": "^0.25.0", - "@iliad-ui/icons-editor": "^0.14.0", + "@iliad-ui/icons": "^0.26.0", + "@iliad-ui/icons-editor": "^0.15.0", "@iliad-ui/menu": "^0.17.3", - "@iliad-ui/picker": "^0.14.7", + "@iliad-ui/picker": "^0.14.8", "@iliad-ui/styles": "^0.18.0" }, "devDependencies": { diff --git a/projects/example-project-webpack/CHANGELOG.md b/projects/example-project-webpack/CHANGELOG.md index 65139a53e60..a25a52f0e32 100644 --- a/projects/example-project-webpack/CHANGELOG.md +++ b/projects/example-project-webpack/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.6.11](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.10...example-project-webpack@1.6.11) (2022-12-09) + +**Note:** Version bump only for package example-project-webpack + ## [1.6.10](https://github.com/zzuzsj/iliad-ui/compare/example-project-webpack@1.6.9...example-project-webpack@1.6.10) (2022-12-09) **Note:** Version bump only for package example-project-webpack diff --git a/projects/example-project-webpack/package.json b/projects/example-project-webpack/package.json index 5708200c27d..db4bf3314df 100644 --- a/projects/example-project-webpack/package.json +++ b/projects/example-project-webpack/package.json @@ -1,6 +1,6 @@ { "name": "example-project-webpack", - "version": "1.6.10", + "version": "1.6.11", "private": true, "description": "An example project that uses the web components and gives an example of how to bundle them minimally with webpack.", "license": "Apache-2.0", @@ -15,8 +15,8 @@ "@iliad-ui/button": "^0.24.0", "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/menu": "^0.17.3", - "@iliad-ui/picker": "^0.14.7", - "@iliad-ui/react": "^0.20.7", + "@iliad-ui/picker": "^0.14.8", + "@iliad-ui/react": "^0.20.8", "@iliad-ui/styles": "^0.18.0", "lit": "^2.0.0" }, diff --git a/projects/story-decorator/CHANGELOG.md b/projects/story-decorator/CHANGELOG.md index 8fa1d15bff7..f3588ef4a9f 100644 --- a/projects/story-decorator/CHANGELOG.md +++ b/projects/story-decorator/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.8](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.10.7...@iliad-ui/story-decorator@0.10.8) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/story-decorator + ## [0.10.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/story-decorator@0.10.6...@iliad-ui/story-decorator@0.10.7) (2022-12-09) **Note:** Version bump only for package @iliad-ui/story-decorator diff --git a/projects/story-decorator/package.json b/projects/story-decorator/package.json index dd708ef0ce7..9bc46eaecad 100644 --- a/projects/story-decorator/package.json +++ b/projects/story-decorator/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/story-decorator", - "version": "0.10.7", + "version": "0.10.8", "publishConfig": { "access": "public" }, @@ -49,8 +49,8 @@ "@iliad-ui/field-label": "^0.10.2", "@iliad-ui/menu": "^0.17.3", "@iliad-ui/overlay": "^0.18.3", - "@iliad-ui/picker": "^0.14.7", - "@iliad-ui/switch": "^0.12.5", + "@iliad-ui/picker": "^0.14.8", + "@iliad-ui/switch": "^0.12.6", "@iliad-ui/theme": "^0.15.3", "tslib": "^2.0.0" }, diff --git a/projects/vrt-compare/CHANGELOG.md b/projects/vrt-compare/CHANGELOG.md index 861885919b2..4dd149f9824 100644 --- a/projects/vrt-compare/CHANGELOG.md +++ b/projects/vrt-compare/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.8](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.7.7...@iliad-ui/vrt-compare@0.7.8) (2022-12-09) + +**Note:** Version bump only for package @iliad-ui/vrt-compare + ## [0.7.7](https://github.com/gaoding-inc/iliad-ui/compare/@iliad-ui/vrt-compare@0.7.6...@iliad-ui/vrt-compare@0.7.7) (2022-12-09) **Note:** Version bump only for package @iliad-ui/vrt-compare diff --git a/projects/vrt-compare/package.json b/projects/vrt-compare/package.json index 13cde3d2b2f..648d39cb052 100644 --- a/projects/vrt-compare/package.json +++ b/projects/vrt-compare/package.json @@ -1,6 +1,6 @@ { "name": "@iliad-ui/vrt-compare", - "version": "0.7.7", + "version": "0.7.8", "publishConfig": { "access": "public" }, @@ -44,7 +44,7 @@ "lit-html" ], "dependencies": { - "@iliad-ui/action-bar": "^0.7.7", + "@iliad-ui/action-bar": "^0.7.8", "@iliad-ui/action-button": "^0.14.3", "@iliad-ui/action-group": "^0.12.3", "@iliad-ui/base": "^0.12.2",