@ptcwebops/ptcw-design 0.3.6 → 0.3.8
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/icon-asset_16.cjs.entry.js +9 -7
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/ptc-date.cjs.entry.js +6 -6
- package/dist/cjs/ptc-social-share.cjs.entry.js +11 -4
- package/dist/cjs/ptc-svg-btn.cjs.entry.js +52 -2
- package/dist/cjs/ptcw-design.cjs.js +1 -1
- package/dist/collection/components/icon-asset/icon-asset.css +6 -0
- package/dist/collection/components/icon-asset/icon-asset.js +2 -2
- package/dist/collection/components/ptc-card-bottom/ptc-card-bottom.css +24 -2
- package/dist/collection/components/ptc-card-content/ptc-card-content.css +25 -5
- package/dist/collection/components/ptc-card-plm/ptc-card-plm.css +34 -0
- package/dist/collection/components/ptc-date/ptc-date.css +4 -0
- package/dist/collection/components/ptc-date/ptc-date.js +7 -7
- package/dist/collection/components/ptc-link/ptc-link.css +0 -1
- package/dist/collection/components/ptc-social-share/ptc-social-share.css +6 -0
- package/dist/collection/components/ptc-social-share/ptc-social-share.js +20 -10
- package/dist/collection/components/ptc-svg-btn/ptc-svg-btn.css +29 -1
- package/dist/collection/components/ptc-svg-btn/ptc-svg-btn.js +37 -2
- package/dist/collection/components/ptc-title/ptc-title.css +52 -17
- package/dist/collection/components/ptc-title/ptc-title.js +38 -2
- package/dist/collection/media/svg-imgs/slider-arrow-left.svg +18 -0
- package/dist/collection/media/svg-imgs/slider-arrow-right.svg +18 -0
- package/dist/custom-elements/index.js +81 -22
- package/dist/esm/icon-asset_16.entry.js +9 -7
- package/dist/esm/loader.js +1 -1
- package/dist/esm/ptc-date.entry.js +6 -6
- package/dist/esm/ptc-social-share.entry.js +11 -4
- package/dist/esm/ptc-svg-btn.entry.js +52 -2
- package/dist/esm/ptcw-design.js +1 -1
- package/dist/ptcw-design/p-57fcfb62.entry.js +1 -0
- package/dist/ptcw-design/p-618f543a.entry.js +1 -0
- package/dist/ptcw-design/p-b803e2da.entry.js +1 -0
- package/dist/ptcw-design/{p-f396010d.entry.js → p-c140717c.entry.js} +1 -1
- package/dist/ptcw-design/ptcw-design.css +1 -1
- package/dist/ptcw-design/ptcw-design.esm.js +1 -1
- package/dist/types/components/icon-asset/icon-asset.d.ts +1 -1
- package/dist/types/components/ptc-date/ptc-date.d.ts +1 -1
- package/dist/types/components/ptc-social-share/ptc-social-share.d.ts +5 -0
- package/dist/types/components/ptc-svg-btn/ptc-svg-btn.d.ts +8 -0
- package/dist/types/components/ptc-title/ptc-title.d.ts +11 -0
- package/dist/types/components.d.ts +40 -4
- package/package.json +1 -1
- package/readme.md +1 -1
- package/dist/ptcw-design/p-834e88dd.entry.js +0 -1
- package/dist/ptcw-design/p-a0fdfe9a.entry.js +0 -1
- package/dist/ptcw-design/p-cccc0e5d.entry.js +0 -1
|
@@ -7,7 +7,7 @@ export class PtcDate {
|
|
|
7
7
|
this.year = 1900;
|
|
8
8
|
/**
|
|
9
9
|
* Month
|
|
10
|
-
* An integer between
|
|
10
|
+
* An integer between 1 (January) and 12 (December) representing the month.If omitted, defaults to 0.
|
|
11
11
|
*/
|
|
12
12
|
this.month = 0;
|
|
13
13
|
/**
|
|
@@ -19,7 +19,7 @@ export class PtcDate {
|
|
|
19
19
|
* Country
|
|
20
20
|
* examples: en-US, zh-CN, zh-TW, fr-FR, ja-JP, ru-RU, de-DE, ko-KR, it-IT, es-ES
|
|
21
21
|
*/
|
|
22
|
-
this.country =
|
|
22
|
+
this.country = 'en-US';
|
|
23
23
|
/**
|
|
24
24
|
* Date Font Size
|
|
25
25
|
*/
|
|
@@ -35,16 +35,16 @@ export class PtcDate {
|
|
|
35
35
|
getCssClassMap() {
|
|
36
36
|
return {
|
|
37
37
|
[this.dateColor]: !!this.dateColor ? true : false,
|
|
38
|
-
[this.dataSize]: !!this.dataSize ? true : false
|
|
38
|
+
[this.dataSize]: !!this.dataSize ? true : false,
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
41
|
getDate() {
|
|
42
42
|
if (this.dateString) {
|
|
43
|
-
let newDate = new Date(this.dateString.replace(/-/g, '
|
|
43
|
+
let newDate = new Date(this.dateString.replace(/-/g, '/'));
|
|
44
44
|
return newDate;
|
|
45
45
|
}
|
|
46
46
|
else {
|
|
47
|
-
return new Date(this.year, this.month, this.day);
|
|
47
|
+
return new Date(this.year, this.month - 1, this.day);
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
50
|
static get is() { return "ptc-date"; }
|
|
@@ -86,7 +86,7 @@ export class PtcDate {
|
|
|
86
86
|
"optional": false,
|
|
87
87
|
"docs": {
|
|
88
88
|
"tags": [],
|
|
89
|
-
"text": "Month\nAn integer between
|
|
89
|
+
"text": "Month\nAn integer between 1 (January) and 12 (December) representing the month.If omitted, defaults to 0."
|
|
90
90
|
},
|
|
91
91
|
"attribute": "month",
|
|
92
92
|
"reflect": false,
|
|
@@ -126,7 +126,7 @@ export class PtcDate {
|
|
|
126
126
|
},
|
|
127
127
|
"attribute": "country",
|
|
128
128
|
"reflect": false,
|
|
129
|
-
"defaultValue": "
|
|
129
|
+
"defaultValue": "'en-US'"
|
|
130
130
|
},
|
|
131
131
|
"dateString": {
|
|
132
132
|
"type": "string",
|
|
@@ -206,7 +206,6 @@
|
|
|
206
206
|
.arrow-plm {
|
|
207
207
|
color: var(--color-white);
|
|
208
208
|
font-weight: var(--ptc-font-weight-extrabold);
|
|
209
|
-
font-size: var(--ptc-font-size-medium);
|
|
210
209
|
line-height: var(--ptc-line-height-19);
|
|
211
210
|
text-decoration: underline;
|
|
212
211
|
text-decoration-thickness: 1px;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { Component, Host, h, Prop, Element } from '@stencil/core';
|
|
1
|
+
import { Component, Host, h, Prop, Element, State } from '@stencil/core';
|
|
2
2
|
export class PtcSocialShare {
|
|
3
3
|
constructor() {
|
|
4
|
-
this.display =
|
|
4
|
+
this.display = 'inline-block';
|
|
5
5
|
this.shareType = 'twitter';
|
|
6
6
|
/**
|
|
7
7
|
* Optional - source for linkedin
|
|
@@ -12,23 +12,30 @@ export class PtcSocialShare {
|
|
|
12
12
|
* If you want to use mail share, you need to use this property
|
|
13
13
|
*/
|
|
14
14
|
this.recipient = '';
|
|
15
|
+
/**
|
|
16
|
+
* is hover or not
|
|
17
|
+
*/
|
|
18
|
+
this.isHover = false;
|
|
15
19
|
}
|
|
16
20
|
render() {
|
|
17
21
|
const classMap = this.getCssClassMap();
|
|
18
22
|
return (h(Host, { class: classMap },
|
|
19
|
-
h("div", { onClick: () => this.share() },
|
|
20
|
-
this.shareType == 'mail' ? h("icon-asset", { type: "ptc", size: "x-large", name: "plm-mail", color:
|
|
21
|
-
this.shareType == 'linkedin' ? h("icon-asset", { type: "ptc", size: "x-large", name: "plm-linkedin", color:
|
|
22
|
-
this.shareType == 'twitter' ? h("icon-asset", { type: "ptc", size: "x-large", name: "plm-twitter", color:
|
|
23
|
-
this.shareType == 'facebook' ? h("icon-asset", { type: "ptc", size: "x-large", name: "plm-fb", color:
|
|
24
|
-
this.shareType == 'share-api' ? h("icon-asset", { type: "solid", size: "x-large", name: "share-square", color:
|
|
23
|
+
h("div", { onClick: () => this.share(), onMouseEnter: () => this.hoverToggle(), onMouseLeave: () => this.hoverToggle() },
|
|
24
|
+
this.shareType == 'mail' ? h("icon-asset", Object.assign({ type: "ptc", size: "x-large", name: "plm-mail" }, (this.isHover ? { color: 'gray' } : { color: 'white' }))) : null,
|
|
25
|
+
this.shareType == 'linkedin' ? h("icon-asset", Object.assign({ type: "ptc", size: "x-large", name: "plm-linkedin" }, (this.isHover ? { color: 'gray' } : { color: 'white' }))) : null,
|
|
26
|
+
this.shareType == 'twitter' ? h("icon-asset", Object.assign({ type: "ptc", size: "x-large", name: "plm-twitter" }, (this.isHover ? { color: 'gray' } : { color: 'white' }))) : null,
|
|
27
|
+
this.shareType == 'facebook' ? h("icon-asset", Object.assign({ type: "ptc", size: "x-large", name: "plm-fb" }, (this.isHover ? { color: 'gray' } : { color: 'white' }))) : null,
|
|
28
|
+
this.shareType == 'share-api' ? h("icon-asset", Object.assign({ type: "solid", size: "x-large", name: "share-square" }, (this.isHover ? { color: 'gray' } : { color: 'white' }))) : null)));
|
|
25
29
|
}
|
|
26
30
|
getCssClassMap() {
|
|
27
31
|
return {
|
|
28
32
|
['ptc-social-share']: true,
|
|
29
|
-
[this.display]: true
|
|
33
|
+
[this.display]: true,
|
|
30
34
|
};
|
|
31
35
|
}
|
|
36
|
+
hoverToggle() {
|
|
37
|
+
this.isHover = !this.isHover;
|
|
38
|
+
}
|
|
32
39
|
share() {
|
|
33
40
|
if (this.shareType == 'twitter') {
|
|
34
41
|
window.open(`https://twitter.com/share?text=${this.text}&url=${this.url}`);
|
|
@@ -84,7 +91,7 @@ export class PtcSocialShare {
|
|
|
84
91
|
},
|
|
85
92
|
"attribute": "display",
|
|
86
93
|
"reflect": false,
|
|
87
|
-
"defaultValue": "
|
|
94
|
+
"defaultValue": "'inline-block'"
|
|
88
95
|
},
|
|
89
96
|
"shareType": {
|
|
90
97
|
"type": "string",
|
|
@@ -192,5 +199,8 @@ export class PtcSocialShare {
|
|
|
192
199
|
"defaultValue": "''"
|
|
193
200
|
}
|
|
194
201
|
}; }
|
|
202
|
+
static get states() { return {
|
|
203
|
+
"isHover": {}
|
|
204
|
+
}; }
|
|
195
205
|
static get elementRef() { return "el"; }
|
|
196
206
|
}
|
|
@@ -1,8 +1,23 @@
|
|
|
1
1
|
:host {
|
|
2
|
-
display: block;
|
|
3
2
|
cursor: pointer;
|
|
4
3
|
}
|
|
5
4
|
|
|
5
|
+
:host(.block) {
|
|
6
|
+
display: block;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
:host(.inline) {
|
|
10
|
+
display: inline;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
:host(.inline-block) {
|
|
14
|
+
display: inline-block;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
:host(.flex) {
|
|
18
|
+
display: flex;
|
|
19
|
+
}
|
|
20
|
+
|
|
6
21
|
.svg-close svg .cls-1,
|
|
7
22
|
.svg-close svg .cls-2 {
|
|
8
23
|
fill: none;
|
|
@@ -74,4 +89,17 @@
|
|
|
74
89
|
|
|
75
90
|
.svg-close.svg-close-white .cls-1 {
|
|
76
91
|
stroke: #fff;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.slider-left,
|
|
95
|
+
.slider-right {
|
|
96
|
+
transition: all var(--ptc-transition-medium) var(--ptc-standard-ease);
|
|
97
|
+
}
|
|
98
|
+
.slider-left svg .arrow,
|
|
99
|
+
.slider-right svg .arrow {
|
|
100
|
+
fill: var(--color-primary-grey);
|
|
101
|
+
}
|
|
102
|
+
.slider-left:hover svg .arrow,
|
|
103
|
+
.slider-right:hover svg .arrow {
|
|
104
|
+
fill: var(--color-green-06);
|
|
77
105
|
}
|
|
@@ -1,8 +1,25 @@
|
|
|
1
1
|
import { Component, Host, h, Prop } from '@stencil/core';
|
|
2
2
|
import closeSvg from '../../media/svg-imgs/close.svg';
|
|
3
|
+
import arrowSvgLeft from '../../media/svg-imgs/slider-arrow-left.svg';
|
|
4
|
+
import arrowSvgRight from '../../media/svg-imgs/slider-arrow-right.svg';
|
|
3
5
|
export class PtcSvgBtn {
|
|
6
|
+
constructor() {
|
|
7
|
+
/**
|
|
8
|
+
* Display
|
|
9
|
+
*/
|
|
10
|
+
this.display = 'block';
|
|
11
|
+
}
|
|
4
12
|
render() {
|
|
5
|
-
|
|
13
|
+
const classMap = this.getCssClassMap();
|
|
14
|
+
return (h(Host, { class: classMap },
|
|
15
|
+
!!this.svgName && this.svgName === 'close' ? h("div", { class: 'svg-close', innerHTML: closeSvg }) : null,
|
|
16
|
+
!!this.svgName && this.svgName === 'slider-left' ? h("div", { class: 'slider-left', innerHTML: arrowSvgLeft }) : null,
|
|
17
|
+
!!this.svgName && this.svgName === 'slider-right' ? h("div", { class: 'slider-right', innerHTML: arrowSvgRight }) : null));
|
|
18
|
+
}
|
|
19
|
+
getCssClassMap() {
|
|
20
|
+
return {
|
|
21
|
+
[this.display]: true
|
|
22
|
+
};
|
|
6
23
|
}
|
|
7
24
|
static get is() { return "ptc-svg-btn"; }
|
|
8
25
|
static get encapsulation() { return "shadow"; }
|
|
@@ -25,10 +42,28 @@ export class PtcSvgBtn {
|
|
|
25
42
|
"optional": true,
|
|
26
43
|
"docs": {
|
|
27
44
|
"tags": [],
|
|
28
|
-
"text": ""
|
|
45
|
+
"text": "Options: \"close\", \"slider-left\", \"slider-right\""
|
|
29
46
|
},
|
|
30
47
|
"attribute": "svg-name",
|
|
31
48
|
"reflect": false
|
|
49
|
+
},
|
|
50
|
+
"display": {
|
|
51
|
+
"type": "string",
|
|
52
|
+
"mutable": false,
|
|
53
|
+
"complexType": {
|
|
54
|
+
"original": "'block' | 'inline' | 'inline-block' | 'flex'",
|
|
55
|
+
"resolved": "\"block\" | \"flex\" | \"inline\" | \"inline-block\"",
|
|
56
|
+
"references": {}
|
|
57
|
+
},
|
|
58
|
+
"required": false,
|
|
59
|
+
"optional": false,
|
|
60
|
+
"docs": {
|
|
61
|
+
"tags": [],
|
|
62
|
+
"text": "Display"
|
|
63
|
+
},
|
|
64
|
+
"attribute": "display",
|
|
65
|
+
"reflect": false,
|
|
66
|
+
"defaultValue": "'block'"
|
|
32
67
|
}
|
|
33
68
|
}; }
|
|
34
69
|
}
|
|
@@ -86,23 +86,6 @@ div.is-plm-hub h3 {
|
|
|
86
86
|
margin-block-end: 0em;
|
|
87
87
|
margin-inline-start: 0px;
|
|
88
88
|
margin-inline-end: 0px;
|
|
89
|
-
}
|
|
90
|
-
div.is-plm-hub h1 {
|
|
91
|
-
font-weight: var(--ptc-font-weight-extrabold);
|
|
92
|
-
font-size: 50px;
|
|
93
|
-
line-height: 59px;
|
|
94
|
-
color: var(--color-white);
|
|
95
|
-
}
|
|
96
|
-
div.is-plm-hub h2 {
|
|
97
|
-
font-weight: var(--ptc-font-weight-extrabold);
|
|
98
|
-
font-size: var(--ptc-font-size-x-large);
|
|
99
|
-
line-height: 28px;
|
|
100
|
-
color: var(--color-white);
|
|
101
|
-
}
|
|
102
|
-
div.is-plm-hub h3 {
|
|
103
|
-
font-weight: var(--ptc-font-weight-extrabold);
|
|
104
|
-
font-size: var(--ptc-font-size-large);
|
|
105
|
-
line-height: 23px;
|
|
106
89
|
color: var(--color-white);
|
|
107
90
|
}
|
|
108
91
|
div.margin-flush {
|
|
@@ -111,33 +94,43 @@ div.margin-flush {
|
|
|
111
94
|
}
|
|
112
95
|
div.margin-top-2 {
|
|
113
96
|
margin-top: var(--ptc-element-spacing-02);
|
|
97
|
+
margin-bottom: 0;
|
|
114
98
|
}
|
|
115
99
|
div.margin-top-3 {
|
|
116
100
|
margin-top: var(--ptc-element-spacing-03);
|
|
101
|
+
margin-bottom: 0;
|
|
117
102
|
}
|
|
118
103
|
div.margin-top-4 {
|
|
119
104
|
margin-top: var(--ptc-element-spacing-04);
|
|
105
|
+
margin-bottom: 0;
|
|
120
106
|
}
|
|
121
107
|
div.margin-top-5 {
|
|
122
108
|
margin-top: var(--ptc-element-spacing-05);
|
|
109
|
+
margin-bottom: 0;
|
|
123
110
|
}
|
|
124
111
|
div.margin-top-6 {
|
|
125
112
|
margin-top: var(--ptc-element-spacing-06);
|
|
113
|
+
margin-bottom: 0;
|
|
126
114
|
}
|
|
127
115
|
div.margin-bottom-2 {
|
|
128
116
|
margin-bottom: var(--ptc-element-spacing-02);
|
|
117
|
+
margin-top: 0;
|
|
129
118
|
}
|
|
130
119
|
div.margin-bottom-3 {
|
|
131
120
|
margin-bottom: var(--ptc-element-spacing-03);
|
|
121
|
+
margin-top: 0;
|
|
132
122
|
}
|
|
133
123
|
div.margin-bottom-4 {
|
|
134
124
|
margin-bottom: var(--ptc-element-spacing-04);
|
|
125
|
+
margin-top: 0;
|
|
135
126
|
}
|
|
136
127
|
div.margin-bottom-5 {
|
|
137
128
|
margin-bottom: var(--ptc-element-spacing-05);
|
|
129
|
+
margin-top: 0;
|
|
138
130
|
}
|
|
139
131
|
div.margin-bottom-6 {
|
|
140
132
|
margin-bottom: var(--ptc-element-spacing-06);
|
|
133
|
+
margin-top: 0;
|
|
141
134
|
}
|
|
142
135
|
div.margin-2 {
|
|
143
136
|
margin-top: var(--ptc-element-spacing-02);
|
|
@@ -194,4 +187,46 @@ div.w-8 h1, div.w-8 h2, div.w-8 h3 {
|
|
|
194
187
|
}
|
|
195
188
|
div.w-9 h1, div.w-9 h2, div.w-9 h3 {
|
|
196
189
|
font-weight: var(--ptc-font-weight-black);
|
|
190
|
+
}
|
|
191
|
+
div.xx-small h1, div.xx-small h2, div.xx-small h3 {
|
|
192
|
+
font-size: var(--ptc-font-size-xx-small);
|
|
193
|
+
}
|
|
194
|
+
div.x-small h1, div.x-small h2, div.x-small h3 {
|
|
195
|
+
font-size: var(--ptc-font-size-x-small);
|
|
196
|
+
}
|
|
197
|
+
div.small h1, div.small h2, div.small h3 {
|
|
198
|
+
font-size: var(--ptc-font-size-small);
|
|
199
|
+
}
|
|
200
|
+
div.medium h1, div.medium h2, div.medium h3 {
|
|
201
|
+
font-size: var(--ptc-font-size-medium);
|
|
202
|
+
}
|
|
203
|
+
div.large h1, div.large h2, div.large h3 {
|
|
204
|
+
font-size: var(--ptc-font-size-large);
|
|
205
|
+
}
|
|
206
|
+
div.x-large h1, div.x-large h2, div.x-large h3 {
|
|
207
|
+
font-size: var(--ptc-font-size-x-large);
|
|
208
|
+
}
|
|
209
|
+
div.xx-large h1, div.xx-large h2, div.xx-large h3 {
|
|
210
|
+
font-size: var(--ptc-font-size-xx-large);
|
|
211
|
+
}
|
|
212
|
+
div.xxx-large h1, div.xxx-large h2, div.xxx-large h3 {
|
|
213
|
+
font-size: var(--ptc-font-size-xxx-large);
|
|
214
|
+
}
|
|
215
|
+
div.xxxx-large h1, div.xxxx-large h2, div.xxxx-large h3 {
|
|
216
|
+
font-size: var(--ptc-font-size-xxxx-large);
|
|
217
|
+
}
|
|
218
|
+
div.font-size-15 h1, div.font-size-15 h2, div.font-size-15 h3 {
|
|
219
|
+
font-size: 15px;
|
|
220
|
+
}
|
|
221
|
+
div.font-size-50 h1, div.font-size-50 h2, div.font-size-50 h3 {
|
|
222
|
+
font-size: 50px;
|
|
223
|
+
}
|
|
224
|
+
div.lh-23 {
|
|
225
|
+
line-height: 23px;
|
|
226
|
+
}
|
|
227
|
+
div.lh-28 {
|
|
228
|
+
line-height: 28px;
|
|
229
|
+
}
|
|
230
|
+
div.lh-59 {
|
|
231
|
+
line-height: 59px;
|
|
197
232
|
}
|
|
@@ -43,7 +43,9 @@ export class PtcTitle {
|
|
|
43
43
|
[this.isPlmHub ? 'is-plm-hub' : 'is-standard']: true,
|
|
44
44
|
[this.titleMargin]: !!this.titleMargin ? true : false,
|
|
45
45
|
[this.titleShadow]: !!this.titleShadow ? true : false,
|
|
46
|
-
[this.titleWeight]: !!this.titleWeight ? true : false
|
|
46
|
+
[this.titleWeight]: !!this.titleWeight ? true : false,
|
|
47
|
+
[this.titleSize]: !!this.titleSize ? true : false,
|
|
48
|
+
[this.titleLHeight]: !!this.titleLHeight ? true : false
|
|
47
49
|
};
|
|
48
50
|
}
|
|
49
51
|
static get is() { return "ptc-title"; }
|
|
@@ -173,10 +175,44 @@ export class PtcTitle {
|
|
|
173
175
|
"optional": false,
|
|
174
176
|
"docs": {
|
|
175
177
|
"tags": [],
|
|
176
|
-
"text": ""
|
|
178
|
+
"text": "Title weight"
|
|
177
179
|
},
|
|
178
180
|
"attribute": "title-weight",
|
|
179
181
|
"reflect": false
|
|
182
|
+
},
|
|
183
|
+
"titleSize": {
|
|
184
|
+
"type": "string",
|
|
185
|
+
"mutable": false,
|
|
186
|
+
"complexType": {
|
|
187
|
+
"original": "'xx-small' | 'x-small' | 'small' | 'medium' | 'large' | 'x-large' | 'xx-large' | 'xxx-large' | 'xxxx-large' | 'font-size-15' | 'font-size-50'",
|
|
188
|
+
"resolved": "\"font-size-15\" | \"font-size-50\" | \"large\" | \"medium\" | \"small\" | \"x-large\" | \"x-small\" | \"xx-large\" | \"xx-small\" | \"xxx-large\" | \"xxxx-large\"",
|
|
189
|
+
"references": {}
|
|
190
|
+
},
|
|
191
|
+
"required": false,
|
|
192
|
+
"optional": false,
|
|
193
|
+
"docs": {
|
|
194
|
+
"tags": [],
|
|
195
|
+
"text": "Title size"
|
|
196
|
+
},
|
|
197
|
+
"attribute": "title-size",
|
|
198
|
+
"reflect": false
|
|
199
|
+
},
|
|
200
|
+
"titleLHeight": {
|
|
201
|
+
"type": "string",
|
|
202
|
+
"mutable": false,
|
|
203
|
+
"complexType": {
|
|
204
|
+
"original": "'lh-59' | 'lh-28' | 'lh-23'",
|
|
205
|
+
"resolved": "\"lh-23\" | \"lh-28\" | \"lh-59\"",
|
|
206
|
+
"references": {}
|
|
207
|
+
},
|
|
208
|
+
"required": false,
|
|
209
|
+
"optional": false,
|
|
210
|
+
"docs": {
|
|
211
|
+
"tags": [],
|
|
212
|
+
"text": "Title line height"
|
|
213
|
+
},
|
|
214
|
+
"attribute": "title-l-height",
|
|
215
|
+
"reflect": false
|
|
180
216
|
}
|
|
181
217
|
}; }
|
|
182
218
|
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g filter="url(#filter0_d_494_37)">
|
|
3
|
+
<circle cx="24" cy="22" r="20" fill="white"/>
|
|
4
|
+
<path d="M23.1444 16L23.1444 20.5762L31 20.5762L31 23.4239L23.1444 23.4239L23.1444 28L17 21.9669L23.1444 16Z" class="arrow"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<filter id="filter0_d_494_37" x="0" y="0" width="48" height="48" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
8
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
9
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
10
|
+
<feOffset dy="2"/>
|
|
11
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
12
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
13
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
|
14
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_494_37"/>
|
|
15
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_494_37" result="shape"/>
|
|
16
|
+
</filter>
|
|
17
|
+
</defs>
|
|
18
|
+
</svg>
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<g filter="url(#filter0_d_494_34)">
|
|
3
|
+
<circle cx="24" cy="22" r="20" fill="white"/>
|
|
4
|
+
<path d="M24.8556 16L24.8556 20.5762L17 20.5762L17 23.4239L24.8556 23.4239L24.8556 28L31 21.9669L24.8556 16Z" class="arrow"/>
|
|
5
|
+
</g>
|
|
6
|
+
<defs>
|
|
7
|
+
<filter id="filter0_d_494_34" x="0" y="0" width="48" height="48" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
|
8
|
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
|
9
|
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
|
10
|
+
<feOffset dy="2"/>
|
|
11
|
+
<feGaussianBlur stdDeviation="2"/>
|
|
12
|
+
<feComposite in2="hardAlpha" operator="out"/>
|
|
13
|
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
|
14
|
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_494_34"/>
|
|
15
|
+
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_494_34" result="shape"/>
|
|
16
|
+
</filter>
|
|
17
|
+
</defs>
|
|
18
|
+
</svg>
|