@roadtrip/components 3.15.0 → 3.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index-fb57f684.js.map +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/road-badge_14.cjs.entry.js +20 -6
- package/dist/cjs/road-badge_14.cjs.entry.js.map +1 -1
- package/dist/cjs/road-dropdown.cjs.entry.js +15 -9
- package/dist/cjs/road-dropdown.cjs.entry.js.map +1 -1
- package/dist/cjs/roadtrip.cjs.js +1 -1
- package/dist/collection/components/dropdown/dropdown.js +29 -19
- package/dist/collection/components/dropdown/dropdown.js.map +1 -1
- package/dist/collection/components/icon/svg/check-list-solid.svg +1 -0
- package/dist/collection/components/icon/svg/vehicle-car-search-color.svg +1 -1
- package/dist/collection/components/icon/svg/world-solid.svg +1 -0
- package/dist/collection/components/input/input.js +17 -7
- package/dist/collection/components/input/input.js.map +1 -1
- package/dist/collection/components/item/item.css +47 -22
- package/dist/collection/components/item/item.js +60 -2
- package/dist/collection/components/item/item.js.map +1 -1
- package/dist/collection/components/item/item.stories.js +32 -15
- package/dist/esm/index-891decf5.js.map +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/road-badge_14.entry.js +20 -6
- package/dist/esm/road-badge_14.entry.js.map +1 -1
- package/dist/esm/road-dropdown.entry.js +16 -10
- package/dist/esm/road-dropdown.entry.js.map +1 -1
- package/dist/esm/roadtrip.js +1 -1
- package/dist/html.html-data.json +25 -5
- package/dist/icons/icons.svg +1 -1
- package/dist/icons/index.d.ts +2 -0
- package/dist/icons/index.js +3 -1
- package/dist/roadtrip/p-73fe2357.js.map +1 -1
- package/dist/roadtrip/{p-f3da3f10.entry.js → p-afe28f05.entry.js} +2 -2
- package/dist/roadtrip/p-afe28f05.entry.js.map +1 -0
- package/dist/roadtrip/p-faba450c.entry.js +2 -0
- package/dist/roadtrip/p-faba450c.entry.js.map +1 -0
- package/dist/roadtrip/roadtrip.esm.js +1 -1
- package/dist/roadtrip/roadtrip.esm.js.map +1 -1
- package/dist/roadtrip/svg/check-list-solid.svg +1 -0
- package/dist/roadtrip/svg/vehicle-car-search-color.svg +1 -1
- package/dist/roadtrip/svg/world-solid.svg +1 -0
- package/dist/types/components/dropdown/dropdown.d.ts +2 -23
- package/dist/types/components/input/input.d.ts +2 -2
- package/dist/types/components/item/item.d.ts +12 -0
- package/dist/types/components.d.ts +27 -33
- package/hydrate/index.js +39 -21
- package/icons/icons.svg +1 -1
- package/icons/index.d.ts +2 -0
- package/icons/index.js +3 -1
- package/package.json +1 -1
- package/dist/roadtrip/p-9d62ca01.entry.js +0 -2
- package/dist/roadtrip/p-9d62ca01.entry.js.map +0 -1
- package/dist/roadtrip/p-f3da3f10.entry.js.map +0 -1
|
@@ -10,6 +10,8 @@ import { navigationChevron } from "../../../icons";
|
|
|
10
10
|
export class Item {
|
|
11
11
|
constructor() {
|
|
12
12
|
this.multipleInputs = false;
|
|
13
|
+
this.titleItem = '';
|
|
14
|
+
this.text = '';
|
|
13
15
|
this.button = false;
|
|
14
16
|
this.detail = undefined;
|
|
15
17
|
this.active = undefined;
|
|
@@ -19,6 +21,7 @@ export class Item {
|
|
|
19
21
|
this.href = undefined;
|
|
20
22
|
this.rel = undefined;
|
|
21
23
|
this.lines = undefined;
|
|
24
|
+
this.layout = 'horizontal';
|
|
22
25
|
this.target = undefined;
|
|
23
26
|
this.type = 'button';
|
|
24
27
|
}
|
|
@@ -28,7 +31,7 @@ export class Item {
|
|
|
28
31
|
return (this.href !== undefined || this.button);
|
|
29
32
|
}
|
|
30
33
|
render() {
|
|
31
|
-
const { detail, detailIcon, download, lines, disabled, href, rel, target } = this;
|
|
34
|
+
const { detail, detailIcon, download, layout, lines, disabled, href, rel, target } = this;
|
|
32
35
|
const clickable = this.isClickable();
|
|
33
36
|
const TagType = clickable ? (href === undefined ? 'button' : 'a') : 'div';
|
|
34
37
|
const attrs = (TagType === 'button')
|
|
@@ -45,7 +48,8 @@ export class Item {
|
|
|
45
48
|
} }, h(TagType, Object.assign({}, attrs, { class: {
|
|
46
49
|
'item-native': true,
|
|
47
50
|
'item-active': this.active,
|
|
48
|
-
|
|
51
|
+
[`layout-${layout}`]: layout !== undefined,
|
|
52
|
+
}, part: "native", disabled: disabled }), h("slot", { name: "start" }), h("div", { class: "item-inner" }, h("div", { class: "input-wrapper" }, h("slot", null), h("div", { class: "input-wrapper-info" }, h("road-label", { class: "input-wrapper-info-title" }, this.titleItem), h("p", { class: "input-wrapper-info-text" }, this.text))), h("slot", { name: "end" }), showDetail && h("road-icon", { icon: detailIcon, lazy: false, class: "item-detail-icon" })))));
|
|
49
53
|
}
|
|
50
54
|
static get is() { return "road-item"; }
|
|
51
55
|
static get encapsulation() { return "shadow"; }
|
|
@@ -61,6 +65,42 @@ export class Item {
|
|
|
61
65
|
}
|
|
62
66
|
static get properties() {
|
|
63
67
|
return {
|
|
68
|
+
"titleItem": {
|
|
69
|
+
"type": "string",
|
|
70
|
+
"mutable": false,
|
|
71
|
+
"complexType": {
|
|
72
|
+
"original": "string",
|
|
73
|
+
"resolved": "string | undefined",
|
|
74
|
+
"references": {}
|
|
75
|
+
},
|
|
76
|
+
"required": false,
|
|
77
|
+
"optional": true,
|
|
78
|
+
"docs": {
|
|
79
|
+
"tags": [],
|
|
80
|
+
"text": "Title for the item"
|
|
81
|
+
},
|
|
82
|
+
"attribute": "title-item",
|
|
83
|
+
"reflect": false,
|
|
84
|
+
"defaultValue": "''"
|
|
85
|
+
},
|
|
86
|
+
"text": {
|
|
87
|
+
"type": "string",
|
|
88
|
+
"mutable": false,
|
|
89
|
+
"complexType": {
|
|
90
|
+
"original": "string",
|
|
91
|
+
"resolved": "string | undefined",
|
|
92
|
+
"references": {}
|
|
93
|
+
},
|
|
94
|
+
"required": false,
|
|
95
|
+
"optional": true,
|
|
96
|
+
"docs": {
|
|
97
|
+
"tags": [],
|
|
98
|
+
"text": "Description for the item"
|
|
99
|
+
},
|
|
100
|
+
"attribute": "text",
|
|
101
|
+
"reflect": false,
|
|
102
|
+
"defaultValue": "''"
|
|
103
|
+
},
|
|
64
104
|
"button": {
|
|
65
105
|
"type": "boolean",
|
|
66
106
|
"mutable": false,
|
|
@@ -217,6 +257,24 @@ export class Item {
|
|
|
217
257
|
"attribute": "lines",
|
|
218
258
|
"reflect": false
|
|
219
259
|
},
|
|
260
|
+
"layout": {
|
|
261
|
+
"type": "string",
|
|
262
|
+
"mutable": false,
|
|
263
|
+
"complexType": {
|
|
264
|
+
"original": "'horizontal' | 'vertical'",
|
|
265
|
+
"resolved": "\"horizontal\" | \"vertical\" | undefined",
|
|
266
|
+
"references": {}
|
|
267
|
+
},
|
|
268
|
+
"required": false,
|
|
269
|
+
"optional": true,
|
|
270
|
+
"docs": {
|
|
271
|
+
"tags": [],
|
|
272
|
+
"text": "How the bottom border should be displayed on the item."
|
|
273
|
+
},
|
|
274
|
+
"attribute": "layout",
|
|
275
|
+
"reflect": false,
|
|
276
|
+
"defaultValue": "'horizontal'"
|
|
277
|
+
},
|
|
220
278
|
"target": {
|
|
221
279
|
"type": "string",
|
|
222
280
|
"mutable": false,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"item.js","sourceRoot":"","sources":["../../../src/components/item/item.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACzE,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAEnD;;;;;;GAMG;AAOH,MAAM,OAAO,IAAI;;0BAIW,KAAK;
|
|
1
|
+
{"version":3,"file":"item.js","sourceRoot":"","sources":["../../../src/components/item/item.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,IAAI,EAAE,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AACzE,OAAO,EAAE,iBAAiB,EAAE,MAAM,gBAAgB,CAAC;AAEnD;;;;;;GAMG;AAOH,MAAM,OAAO,IAAI;;0BAIW,KAAK;qBAKA,EAAE;gBAKP,EAAE;kBAKX,KAAK;;;sBAgBD,iBAAiB;oBAKnB,KAAK;;;;;kBA8BqB,YAAY;;gBAYX,QAAQ;;EAEtD,qEAAqE;EACrE,qCAAqC;EAC7B,WAAW;IACjB,OAAO,CAAC,IAAI,CAAC,IAAI,KAAK,SAAS,IAAI,IAAI,CAAC,MAAM,CAAC,CAAC;EAClD,CAAC;EAED,MAAM;IACJ,MAAM,EAAE,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,GAAG,EAAE,MAAM,EAAE,GAAG,IAAI,CAAC;IAC1F,MAAM,SAAS,GAAG,IAAI,CAAC,WAAW,EAAE,CAAC;IACrC,MAAM,OAAO,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,IAAI,KAAK,SAAS,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,KAAY,CAAC;IACjF,MAAM,KAAK,GAAG,CAAC,OAAO,KAAK,QAAQ,CAAC;MAClC,CAAC,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE;MACrB,CAAC,CAAC;QACA,QAAQ;QACR,IAAI;QACJ,GAAG;QACH,MAAM;OACP,CAAC;IACJ,MAAM,UAAU,GAAG,MAAM,KAAK,SAAS,IAAI,MAAM,CAAC;IAElD,OAAO,CACL,EAAC,IAAI,qBACY,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,EACvC,KAAK,EAAE;QACL,CAAC,cAAc,KAAK,EAAE,CAAC,EAAE,KAAK,KAAK,SAAS;OAC7C;MAED,EAAC,OAAO,oBACF,KAAK,IACT,KAAK,EAAE;UACL,aAAa,EAAE,IAAI;UACnB,aAAa,EAAE,IAAI,CAAC,MAAM;UAC1B,CAAC,UAAU,MAAM,EAAE,CAAC,EAAE,MAAM,KAAK,SAAS;SAC3C,EACD,IAAI,EAAC,QAAQ,EACb,QAAQ,EAAE,QAAQ;QAElB,YAAM,IAAI,EAAC,OAAO,GAAE;QACpB,WAAK,KAAK,EAAC,YAAY;UACrB,WAAK,KAAK,EAAC,eAAe;YACxB,eAAO;YACP,WAAK,KAAK,EAAC,oBAAoB;cAC7B,kBAAY,KAAK,EAAC,0BAA0B,IAAE,IAAI,CAAC,SAAS,CAAc;cAC1E,SAAG,KAAK,EAAC,yBAAyB,IAAE,IAAI,CAAC,IAAI,CAAK,CAC9C,CACF;UACN,YAAM,IAAI,EAAC,KAAK,GAAE;UACjB,UAAU,IAAI,iBAAW,IAAI,EAAE,UAAU,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAC,kBAAkB,GAAa,CAC1F,CACE,CACL,CACR,CAAC;EACJ,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAEF","sourcesContent":["import { Component, Host, h, Prop, State, Element } from '@stencil/core';\nimport { navigationChevron } from '../../../icons';\n\n/**\n * @slot start - Placed to the left of all other content.\n * @slot - Content of the item.\n * @slot end - Placed to the right of all other content.\n *\n * @part native - The native HTML button, anchor or div element that wraps all child elements.\n */\n\n@Component({\n tag: 'road-item',\n styleUrl: 'item.css',\n shadow: true,\n})\nexport class Item {\n\n @Element() el!: HTMLRoadItemElement;\n\n @State() multipleInputs = false;\n\n /**\n * Title for the item\n */\n @Prop() titleItem?: string = '';\n\n /**\n * Description for the item\n */\n @Prop() text?: string = '';\n\n /**\n * If `true`, a button tag will be rendered and the item will be tappable.\n */\n @Prop() button = false;\n\n /**\n * If `true`, a detail arrow will appear on the item. Defaults to `false` unless the `mode`\n * is `ios` and an `href` or `button` property is present.\n */\n @Prop() detail?: boolean;\n\n /**\n * If `true`, display an active state item\n */\n @Prop() active?: boolean;\n\n /**\n * The icon to use when `detail` is set to `true`.\n */\n @Prop() detailIcon = navigationChevron;\n\n /**\n * If `true`, the user cannot interact with the item.\n */\n @Prop() disabled = false;\n\n /**\n * This attribute instructs browsers to download a URL instead of navigating to\n * it, so the user will be prompted to save it as a local file. If the attribute\n * has a value, it is used as the pre-filled file name in the Save prompt\n * (the user can still change the file name if they want).\n */\n @Prop() download: string | undefined;\n\n /**\n * Contains a URL or a URL fragment that the hyperlink points to.\n * If this property is set, an anchor tag will be rendered.\n */\n @Prop() href: string | undefined;\n\n /**\n * Specifies the relationship of the target object to the link object.\n * The value is a space-separated list of [link types](https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types).\n */\n @Prop() rel: string | undefined;\n\n /**\n * How the bottom border should be displayed on the item.\n */\n @Prop() lines?: 'full' | 'inset' | 'none';\n \n /**\n * How the bottom border should be displayed on the item.\n */\n @Prop() layout?: 'horizontal' | 'vertical' = 'horizontal';\n\n /**\n * Specifies where to display the linked URL.\n * Only applies when an `href` is provided.\n * Special keywords: `\"_blank\"`, `\"_self\"`, `\"_parent\"`, `\"_top\"`.\n */\n @Prop() target: string | undefined;\n\n /**\n * The type of the button. Only used when an `onclick` or `button` property is present.\n */\n @Prop() type: 'submit' | 'reset' | 'button' = 'button';\n\n // If the item has an href or button property it will render a native\n // anchor or button that is clickable\n private isClickable(): boolean {\n return (this.href !== undefined || this.button);\n }\n\n render() {\n const { detail, detailIcon, download, layout, lines, disabled, href, rel, target } = this;\n const clickable = this.isClickable();\n const TagType = clickable ? (href === undefined ? 'button' : 'a') : 'div' as any;\n const attrs = (TagType === 'button')\n ? { type: this.type }\n : {\n download,\n href,\n rel,\n target,\n };\n const showDetail = detail !== undefined && detail;\n\n return (\n <Host\n aria-disabled={disabled ? 'true' : null}\n class={{\n [`item-lines-${lines}`]: lines !== undefined,\n }}\n >\n <TagType\n {...attrs}\n class={{\n 'item-native': true,\n 'item-active': this.active,\n [`layout-${layout}`]: layout !== undefined,\n }}\n part=\"native\"\n disabled={disabled}\n >\n <slot name=\"start\"/>\n <div class=\"item-inner\">\n <div class=\"input-wrapper\">\n <slot/>\n <div class=\"input-wrapper-info\">\n <road-label class=\"input-wrapper-info-title\">{this.titleItem}</road-label>\n <p class=\"input-wrapper-info-text\">{this.text}</p>\n </div>\n </div>\n <slot name=\"end\"/>\n {showDetail && <road-icon icon={detailIcon} lazy={false} class=\"item-detail-icon\"></road-icon>}\n </div>\n </TagType>\n </Host>\n );\n }\n\n}\n"]}
|
|
@@ -15,13 +15,15 @@ export default {
|
|
|
15
15
|
|
|
16
16
|
export const Playground = (args) => html`
|
|
17
17
|
<road-item
|
|
18
|
-
class="bg-white"
|
|
19
18
|
button="${ifDefined(args.button)}"
|
|
20
19
|
detail="${ifDefined(args.detail)}"
|
|
21
20
|
detail-icon="${ifDefined(args['detail-icon'])}"
|
|
22
|
-
active="${ifDefined(args.active)}"
|
|
21
|
+
active="${ifDefined(args.active)}"
|
|
22
|
+
layout="${ifDefined(args.layout)}"
|
|
23
23
|
lines="${ifDefined(args.lines)}"
|
|
24
24
|
disabled="${ifDefined(args.disabled)}"
|
|
25
|
+
title-item="${ifDefined(args['title-item'])}"
|
|
26
|
+
text="${ifDefined(args.text)}"
|
|
25
27
|
>
|
|
26
28
|
${unsafeHTML(args.start)}
|
|
27
29
|
${unsafeHTML(args[' '])}
|
|
@@ -32,11 +34,14 @@ Playground.args = {
|
|
|
32
34
|
button: null,
|
|
33
35
|
detail: null,
|
|
34
36
|
active: null,
|
|
37
|
+
layout: undefined,
|
|
35
38
|
lines: undefined,
|
|
36
39
|
'detail-icon': undefined,
|
|
37
40
|
disabled: null,
|
|
38
41
|
start: '<road-icon name="shipping"></road-icon>',
|
|
39
|
-
'
|
|
42
|
+
'title-item': 'OPEL Insignia',
|
|
43
|
+
text: 'hatchback 2.0 CDTI 16V 130 cv',
|
|
44
|
+
' ': ``,
|
|
40
45
|
};
|
|
41
46
|
Playground.argTypes = {
|
|
42
47
|
button: {
|
|
@@ -48,6 +53,12 @@ Playground.argTypes = {
|
|
|
48
53
|
active: {
|
|
49
54
|
control: 'boolean',
|
|
50
55
|
},
|
|
56
|
+
layout: {
|
|
57
|
+
options: ['horizontal', 'vertical'],
|
|
58
|
+
control: {
|
|
59
|
+
type: 'radio',
|
|
60
|
+
},
|
|
61
|
+
},
|
|
51
62
|
lines: {
|
|
52
63
|
options: ['full', 'inset', 'none'],
|
|
53
64
|
control: {
|
|
@@ -68,6 +79,12 @@ Playground.argTypes = {
|
|
|
68
79
|
type: null,
|
|
69
80
|
},
|
|
70
81
|
},
|
|
82
|
+
'title-item': {
|
|
83
|
+
control: 'text',
|
|
84
|
+
},
|
|
85
|
+
text: {
|
|
86
|
+
control: 'text',
|
|
87
|
+
},
|
|
71
88
|
href: {
|
|
72
89
|
control: {
|
|
73
90
|
type: null,
|
|
@@ -153,16 +170,16 @@ Playground.argTypes = {
|
|
|
153
170
|
};
|
|
154
171
|
|
|
155
172
|
export const Compatibility = () => html`
|
|
156
|
-
<road-item class="mb-16"
|
|
173
|
+
<road-item class="mb-16">
|
|
157
174
|
<road-label>
|
|
158
175
|
<p class="h8 my-4">OPEL Insignia</p>
|
|
159
176
|
<p class="text-small text-truncate m-0">hatchback 2.0 CDTI 16V 130 cv</p>
|
|
160
177
|
</road-label>
|
|
161
178
|
|
|
162
|
-
<road-button slot="end" size="sm" color="secondary" class="
|
|
179
|
+
<road-button slot="end" size="sm" color="secondary" class="ml-16">Modify</road-button>
|
|
163
180
|
</road-item>
|
|
164
181
|
|
|
165
|
-
<road-item class="mb-16"
|
|
182
|
+
<road-item class="mb-16">
|
|
166
183
|
<road-icon slot="start" name="alert-valid-outline" color="success" class="mr-16"></road-icon>
|
|
167
184
|
|
|
168
185
|
<road-label>
|
|
@@ -171,10 +188,10 @@ export const Compatibility = () => html`
|
|
|
171
188
|
<p class="text-small text-truncate m-0">hatchback 2.0 CDTI 16V 130 cv</p>
|
|
172
189
|
</road-label>
|
|
173
190
|
|
|
174
|
-
<road-button slot="end" size="sm" color="secondary" class="
|
|
191
|
+
<road-button slot="end" size="sm" color="secondary" class="ml-16">Modify</road-button>
|
|
175
192
|
</road-item>
|
|
176
193
|
|
|
177
|
-
<road-item class="mb-16"
|
|
194
|
+
<road-item class="mb-16">
|
|
178
195
|
<road-icon slot="start" name="alert-error-outline" color="danger" class="mr-16"></road-icon>
|
|
179
196
|
|
|
180
197
|
<road-label>
|
|
@@ -184,12 +201,12 @@ export const Compatibility = () => html`
|
|
|
184
201
|
<a href="#" class="link">See compatible products</a>
|
|
185
202
|
</road-label>
|
|
186
203
|
|
|
187
|
-
<road-button slot="end" size="sm" color="secondary" class="
|
|
204
|
+
<road-button slot="end" size="sm" color="secondary" class="ml-16">Modify</road-button>
|
|
188
205
|
</road-item>
|
|
189
206
|
`;
|
|
190
207
|
|
|
191
208
|
export const ShoppingGuides = () => html`
|
|
192
|
-
<road-item class="mb-16"
|
|
209
|
+
<road-item class="mb-16">
|
|
193
210
|
<road-icon slot="start" name="vehicle-car-outline" class="mr-16"></road-icon>
|
|
194
211
|
|
|
195
212
|
<road-label>
|
|
@@ -197,10 +214,10 @@ export const ShoppingGuides = () => html`
|
|
|
197
214
|
<p class="text-small text-truncate m-0">hatchback 2.0 CDTI 16V 130 cv</p>
|
|
198
215
|
</road-label>
|
|
199
216
|
|
|
200
|
-
<road-icon slot="end" name="edit" color="secondary" size="sm" class="
|
|
217
|
+
<road-icon slot="end" name="edit" color="secondary" size="sm" class="ml-16"></road-icon>
|
|
201
218
|
</road-item>
|
|
202
219
|
|
|
203
|
-
<road-item class="mb-16"
|
|
220
|
+
<road-item class="mb-16">
|
|
204
221
|
<road-icon slot="start" name="vehicle-car-outline-front" class="mr-16"></road-icon>
|
|
205
222
|
|
|
206
223
|
<road-label>
|
|
@@ -208,10 +225,10 @@ export const ShoppingGuides = () => html`
|
|
|
208
225
|
<p class="h8 m-0">Front lighting</p>
|
|
209
226
|
</road-label>
|
|
210
227
|
|
|
211
|
-
<road-icon slot="end" name="edit" color="secondary" size="sm" class="
|
|
228
|
+
<road-icon slot="end" name="edit" color="secondary" size="sm" class="ml-16"></road-icon>
|
|
212
229
|
</road-item>
|
|
213
230
|
|
|
214
|
-
<road-item class="mb-16"
|
|
231
|
+
<road-item class="mb-16">
|
|
215
232
|
<road-icon slot="start" name="light" class="mr-16"></road-icon>
|
|
216
233
|
|
|
217
234
|
<road-label>
|
|
@@ -219,6 +236,6 @@ export const ShoppingGuides = () => html`
|
|
|
219
236
|
<p class="h8 m-0">Position light</p>
|
|
220
237
|
</road-label>
|
|
221
238
|
|
|
222
|
-
<road-icon slot="end" name="edit" color="secondary" size="sm" class="
|
|
239
|
+
<road-icon slot="end" name="edit" color="secondary" size="sm" class="ml-16"></road-icon>
|
|
223
240
|
</road-item>
|
|
224
241
|
`;
|