Skip to content

Commit

Permalink
feat(InputNumber): config redesign and implementation, fix Lit svg pr…
Browse files Browse the repository at this point in the history
…operties naming warning
  • Loading branch information
driss-chelouati committed Dec 7, 2023
1 parent 69656d9 commit fd7a3e2
Show file tree
Hide file tree
Showing 68 changed files with 1,564 additions and 688 deletions.
12 changes: 6 additions & 6 deletions src/plugins/components/accordion/accordion.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ export const Accordion = ({
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="m6 9 6 6 6-6"
/>
</svg>
Expand All @@ -80,9 +80,9 @@ export const Accordion = ({
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M12 5v14m-7-7h14"
/>
</svg>
Expand Down
6 changes: 3 additions & 3 deletions src/plugins/components/accordion/accordion.doc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ Accordions can have a plus indicator.
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="m6 9l6 6l6-6"
/>
</svg>
Expand Down
6 changes: 3 additions & 3 deletions src/plugins/components/autocomplete/autocomplete.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,9 @@ export const Autocomplete = ({
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M18 6 6 18M6 6l12 12"
></path>
</svg>
Expand Down
6 changes: 3 additions & 3 deletions src/plugins/components/autocomplete/autocomplete.doc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,9 @@ Autocompletes have images displayed inside result items.
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="m6 9l6 6l6-6"
/>
</svg>
Expand Down
102 changes: 51 additions & 51 deletions src/plugins/components/autocomplete/autocomplete.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -649,9 +649,9 @@ export const Multiple: Story = {
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M18 6 6 18M6 6l12 12"
></path>
</svg>
Expand All @@ -670,9 +670,9 @@ export const Multiple: Story = {
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M18 6 6 18M6 6l12 12"
></path>
</svg>
Expand Down Expand Up @@ -1040,9 +1040,9 @@ export const SlotIconSm: Story = {
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
>
<circle cx="11" cy="11" r="8" />
<path d="m21 21l-4.35-4.35" />
Expand Down Expand Up @@ -1086,9 +1086,9 @@ export const SlotIconMd: Story = {
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
>
<circle cx="11" cy="11" r="8" />
<path d="m21 21l-4.35-4.35" />
Expand Down Expand Up @@ -1132,9 +1132,9 @@ export const SlotIconLg: Story = {
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
>
<circle cx="11" cy="11" r="8" />
<path d="m21 21l-4.35-4.35" />
Expand Down Expand Up @@ -1181,9 +1181,9 @@ export const MediaIconSm: Story = {
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
>
<circle cx="11" cy="11" r="8" />
<path d="m21 21l-4.35-4.35" />
Expand Down Expand Up @@ -1220,9 +1220,9 @@ export const MediaIconSm: Story = {
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M20 6L9 17l-5-5"
/>
</svg>
Expand Down Expand Up @@ -1259,9 +1259,9 @@ export const MediaIconMd: Story = {
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
>
<circle cx="11" cy="11" r="8" />
<path d="m21 21l-4.35-4.35" />
Expand Down Expand Up @@ -1298,9 +1298,9 @@ export const MediaIconMd: Story = {
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M20 6L9 17l-5-5"
/>
</svg>
Expand Down Expand Up @@ -1337,9 +1337,9 @@ export const MediaIconLg: Story = {
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
>
<circle cx="11" cy="11" r="8" />
<path d="m21 21l-4.35-4.35" />
Expand Down Expand Up @@ -1376,9 +1376,9 @@ export const MediaIconLg: Story = {
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M20 6L9 17l-5-5"
/>
</svg>
Expand Down Expand Up @@ -1416,9 +1416,9 @@ export const MediaImgSm: Story = {
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
>
<circle cx="11" cy="11" r="8" />
<path d="m21 21l-4.35-4.35" />
Expand Down Expand Up @@ -1455,9 +1455,9 @@ export const MediaImgSm: Story = {
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M20 6L9 17l-5-5"
/>
</svg>
Expand Down Expand Up @@ -1493,9 +1493,9 @@ export const MediaImgMd: Story = {
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
>
<circle cx="11" cy="11" r="8" />
<path d="m21 21l-4.35-4.35" />
Expand Down Expand Up @@ -1532,9 +1532,9 @@ export const MediaImgMd: Story = {
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M20 6L9 17l-5-5"
/>
</svg>
Expand Down Expand Up @@ -1570,9 +1570,9 @@ export const MediaImgLg: Story = {
<g
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
>
<circle cx="11" cy="11" r="8" />
<path d="m21 21l-4.35-4.35" />
Expand Down Expand Up @@ -1609,9 +1609,9 @@ export const MediaImgLg: Story = {
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M20 6L9 17l-5-5"
/>
</svg>
Expand Down
6 changes: 3 additions & 3 deletions src/plugins/components/avatar-group/avatar-group.doc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ Avatars can have different sizes and different shapes. The below examples shows
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="m6 9l6 6l6-6"
/>
</svg>
Expand Down
6 changes: 3 additions & 3 deletions src/plugins/components/avatar/avatar.doc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -271,9 +271,9 @@ Avatars have a badge slot that serves as wrapper for the optional badge element.
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="m6 9l6 6l6-6"
/>
</svg>
Expand Down
6 changes: 3 additions & 3 deletions src/plugins/components/breadcrumb/breadcrumb.doc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ Breadcrumbs allow you to quickly identify the path to the current web page.
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="m6 9l6 6l6-6"
/>
</svg>
Expand Down
6 changes: 3 additions & 3 deletions src/plugins/components/button-action/button-action.doc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ Action buttons have a default slot that serves as wrapper for their inner conten
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="m6 9l6 6l6-6"
/>
</svg>
Expand Down
6 changes: 3 additions & 3 deletions src/plugins/components/button-close/button-close.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ export const ButtonClose = ({
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M18 6 6 18M6 6l12 12"
/>
</svg>
Expand Down
6 changes: 3 additions & 3 deletions src/plugins/components/button-close/button-close.doc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ Close buttons can have different colors. Below is an example of the danger color
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="m6 9l6 6l6-6"
/>
</svg>
Expand Down
6 changes: 3 additions & 3 deletions src/plugins/components/button-group/button-group.doc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ Button groups have a default slot that serves as wrapper for their inner content
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="m6 9l6 6l6-6"
/>
</svg>
Expand Down
6 changes: 3 additions & 3 deletions src/plugins/components/button-icon/button-icon.doc.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ Icon buttons have a default slot that serves as wrapper for their inner content.
<path
fill="none"
stroke="currentColor"
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="m6 9l6 6l6-6"
/>
</svg>
Expand Down
Loading

0 comments on commit fd7a3e2

Please sign in to comment.