@m3e/web 2.5.11 → 2.5.12
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/all.js +92 -42
- package/dist/all.js.map +1 -1
- package/dist/all.min.js +56 -56
- package/dist/all.min.js.map +1 -1
- package/dist/autocomplete.js +23 -5
- package/dist/autocomplete.js.map +1 -1
- package/dist/autocomplete.min.js +1 -1
- package/dist/autocomplete.min.js.map +1 -1
- package/dist/breadcrumb.js +1 -1
- package/dist/breadcrumb.js.map +1 -1
- package/dist/breadcrumb.min.js +1 -1
- package/dist/breadcrumb.min.js.map +1 -1
- package/dist/core.js +27 -23
- package/dist/core.js.map +1 -1
- package/dist/core.min.js +1 -1
- package/dist/core.min.js.map +1 -1
- package/dist/custom-elements.json +74 -42
- package/dist/fab.js +1 -1
- package/dist/fab.js.map +1 -1
- package/dist/fab.min.js +1 -1
- package/dist/fab.min.js.map +1 -1
- package/dist/form-field.js +1 -1
- package/dist/form-field.js.map +1 -1
- package/dist/form-field.min.js +2 -2
- package/dist/form-field.min.js.map +1 -1
- package/dist/option.js +12 -2
- package/dist/option.js.map +1 -1
- package/dist/option.min.js +1 -1
- package/dist/option.min.js.map +1 -1
- package/dist/select.js +18 -2
- package/dist/select.js.map +1 -1
- package/dist/select.min.js +1 -1
- package/dist/select.min.js.map +1 -1
- package/dist/src/autocomplete/AutocompleteElement.d.ts.map +1 -1
- package/dist/src/core/shared/mixins/LinkButton.d.ts.map +1 -1
- package/dist/src/core/shared/tokens/DesignToken.d.ts +3 -0
- package/dist/src/core/shared/tokens/DesignToken.d.ts.map +1 -1
- package/dist/src/core/shared/tokens/MeasurementToken.d.ts +13 -7
- package/dist/src/core/shared/tokens/MeasurementToken.d.ts.map +1 -1
- package/dist/src/form-field/FormFieldElement.d.ts.map +1 -1
- package/dist/src/option/OptionElement.d.ts.map +1 -1
- package/dist/src/option/OptionPanelElement.d.ts.map +1 -1
- package/dist/src/select/SelectElement.d.ts.map +1 -1
- package/dist/src/theme/ThemeElement.d.ts.map +1 -1
- package/dist/theme.js +10 -7
- package/dist/theme.js.map +1 -1
- package/dist/theme.min.js +6 -6
- package/dist/theme.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -5432,9 +5432,9 @@
|
|
|
5432
5432
|
"kind": "variable",
|
|
5433
5433
|
"name": "MeasurementToken",
|
|
5434
5434
|
"type": {
|
|
5435
|
-
"text": "{\r\n /** Zero spacing. */\r\n space0:
|
|
5435
|
+
"text": "{\r\n /** Zero spacing. */\r\n space0: space(0),\r\n\r\n /** 2dp spacing. */\r\n space25: space(25),\r\n\r\n /** 4dp spacing. */\r\n space50: space(50),\r\n\r\n /** 6dp spacing. */\r\n space75: space(75),\r\n\r\n /** 8dp spacing. */\r\n space100: space(100),\r\n\r\n /** 10dp spacing. */\r\n space125: space(125),\r\n\r\n /** 12dp spacing. */\r\n space150: space(150),\r\n\r\n /** 14dp spacing. */\r\n space175: space(175),\r\n\r\n /** 16dp spacing. */\r\n space200: space(200),\r\n\r\n /** 20dp spacing. */\r\n space250: space(250),\r\n\r\n /** 24dp spacing. */\r\n space300: space(300),\r\n\r\n /** 32dp spacing. */\r\n space400: space(400),\r\n\r\n /** 36dp spacing. */\r\n space450: space(450),\r\n\r\n /** 40dp spacing. */\r\n space500: space(500),\r\n\r\n /** 48dp spacing. */\r\n space600: space(600),\r\n\r\n /** 56dp spacing. */\r\n space700: space(700),\r\n\r\n /** 64dp spacing. */\r\n space800: space(800),\r\n\r\n /** 72dp spacing. */\r\n space900: space(900),\r\n}"
|
|
5436
5436
|
},
|
|
5437
|
-
"default": "{ /** Zero spacing. */ space0:
|
|
5437
|
+
"default": "{ /** Zero spacing. */ space0: space(0), /** 2dp spacing. */ space25: space(25), /** 4dp spacing. */ space50: space(50), /** 6dp spacing. */ space75: space(75), /** 8dp spacing. */ space100: space(100), /** 10dp spacing. */ space125: space(125), /** 12dp spacing. */ space150: space(150), /** 14dp spacing. */ space175: space(175), /** 16dp spacing. */ space200: space(200), /** 20dp spacing. */ space250: space(250), /** 24dp spacing. */ space300: space(300), /** 32dp spacing. */ space400: space(400), /** 36dp spacing. */ space450: space(450), /** 40dp spacing. */ space500: space(500), /** 48dp spacing. */ space600: space(600), /** 56dp spacing. */ space700: space(700), /** 64dp spacing. */ space800: space(800), /** 72dp spacing. */ space900: space(900), }",
|
|
5438
5438
|
"description": "Design tokens that control measurements."
|
|
5439
5439
|
}
|
|
5440
5440
|
],
|
|
@@ -5507,9 +5507,9 @@
|
|
|
5507
5507
|
"kind": "variable",
|
|
5508
5508
|
"name": "ShapeToken",
|
|
5509
5509
|
"type": {
|
|
5510
|
-
"text": "{\r\n corner: {\r\n /** Fully rounded symmetric shape. */\r\n full: unsafeCSS(\"var(--md-sys-shape-corner-full, 624.9375rem)\"),\r\n\r\n /** Extra large rounded asymmetric shape directed towards the top. */\r\n extraLargeTop: unsafeCSS(\r\n `var(--md-sys-shape-corner-extra-large-top, ${CornerValue.extraLarge} ${CornerValue.extraLarge} ${CornerValue.none} ${CornerValue.none})
|
|
5510
|
+
"text": "{\r\n corner: {\r\n /** Fully rounded symmetric shape. */\r\n full: unsafeCSS(\"var(--md-sys-shape-corner-full, 624.9375rem)\"),\r\n\r\n /** Extra large rounded asymmetric shape directed towards the top. */\r\n extraLargeTop: unsafeCSS(\r\n `var(--md-sys-shape-corner-extra-large-top, ${CornerValue.extraLarge} ${CornerValue.extraLarge} ${CornerValue.none} ${CornerValue.none})`,\r\n ),\r\n\r\n /** Extra large rounded symmetric shape. */\r\n extraLarge: unsafeCSS(`var(--md-sys-shape-corner-extra-large, ${CornerValue.extraLarge})`),\r\n\r\n /** Extra large rounded asymmetric shape directed towards the end. */\r\n extraLargeEnd: unsafeCSS(\r\n `${CornerValue.none} ${CornerValue.extraLarge} ${CornerValue.extraLarge} ${CornerValue.none}`,\r\n ),\r\n\r\n /** Extra large rounded asymmetric shape directed towards the start. */\r\n extraLargeStart: unsafeCSS(\r\n `${CornerValue.extraLarge} ${CornerValue.none} ${CornerValue.none} ${CornerValue.extraLarge}`,\r\n ),\r\n\r\n /** Large rounded asymmetric shape directed towards the top. */\r\n largeTop: unsafeCSS(\r\n `var(--md-sys-shape-corner-large-top, ${CornerValue.large} ${CornerValue.large} ${CornerValue.none} ${CornerValue.none})`,\r\n ),\r\n\r\n /** Large rounded asymmetric shape directed towards the end. */\r\n largeEnd: unsafeCSS(\r\n `var(--md-sys-shape-corner-large-end, ${CornerValue.none} ${CornerValue.large} ${CornerValue.large} ${CornerValue.none})`,\r\n ),\r\n\r\n /** Large rounded asymmetric shape directed towards the start. */\r\n largeStart: unsafeCSS(\r\n `var(--md-sys-shape-corner-large-start, ${CornerValue.large} ${CornerValue.none} ${CornerValue.none} ${CornerValue.large})`,\r\n ),\r\n\r\n /** Large rounded symmetric shape. */\r\n large: unsafeCSS(`var(--md-sys-shape-corner-large, ${CornerValue.large})`),\r\n\r\n /** Medium rounded symmetric shape. */\r\n medium: unsafeCSS(`var(--md-sys-shape-corner-medium, ${CornerValue.medium})`),\r\n\r\n /** Medium rounded asymmetric shape directed towards the top. */\r\n mediumTop: unsafeCSS(`${CornerValue.medium} ${CornerValue.medium} ${CornerValue.none} ${CornerValue.none}`),\r\n\r\n /** Medium rounded asymmetric shape directed towards the end. */\r\n mediumEnd: unsafeCSS(`${CornerValue.none} ${CornerValue.medium} ${CornerValue.medium} ${CornerValue.none}`),\r\n\r\n /** Medium rounded asymmetric shape directed towards the start. */\r\n mediumStart: unsafeCSS(`${CornerValue.medium} ${CornerValue.none} ${CornerValue.none} ${CornerValue.medium}`),\r\n\r\n /** Small rounded symmetric shape. */\r\n small: unsafeCSS(`var(--md-sys-shape-corner-small, ${CornerValue.small})`),\r\n\r\n /** Small rounded asymmetric shape directed towards the top. */\r\n smallTop: unsafeCSS(`${CornerValue.small} ${CornerValue.small} ${CornerValue.none} ${CornerValue.none}`),\r\n\r\n /** Small rounded asymmetric shape directed towards the end. */\r\n smallEnd: unsafeCSS(`${CornerValue.none} ${CornerValue.small} ${CornerValue.small} ${CornerValue.none}`),\r\n\r\n /** Small rounded asymmetric shape directed towards the start. */\r\n smallStart: unsafeCSS(`${CornerValue.small} ${CornerValue.none} ${CornerValue.none} ${CornerValue.small}`),\r\n\r\n /** Extra small rounded asymmetric shape directed towards the top. */\r\n extraSmallTop: unsafeCSS(\r\n `var(--md-sys-shape-corner-extra-small-top, ${CornerValue.extraSmall} ${CornerValue.extraSmall} ${CornerValue.none} ${CornerValue.none})`,\r\n ),\r\n\r\n /** Extra small rounded symmetric shape. */\r\n extraSmall: unsafeCSS(`var(--md-sys-shape-corner-extra-small, ${CornerValue.extraSmall})`),\r\n\r\n /** Extra small rounded asymmetric shape directed towards the end. */\r\n extraSmallEnd: unsafeCSS(\r\n `${CornerValue.none} ${CornerValue.extraSmall} ${CornerValue.extraSmall} ${CornerValue.none}`,\r\n ),\r\n\r\n /** Extra small rounded asymmetric shape directed towards the start. */\r\n extraSmallStart: unsafeCSS(\r\n `${CornerValue.extraSmall} ${CornerValue.none} ${CornerValue.none} ${CornerValue.extraSmall}`,\r\n ),\r\n\r\n /** Extra small rounded asymmetric shape directed towards the bottom. */\r\n extraSmallBottom: unsafeCSS(\r\n `${CornerValue.none} ${CornerValue.none} ${CornerValue.extraSmall} ${CornerValue.extraSmall}`,\r\n ),\r\n\r\n /** No rounding. */\r\n none: unsafeCSS(`var(--md-sys-shape-corner-none, ${CornerValue.none})`),\r\n\r\n /** Increased large rounded symmetric shape. */\r\n largeIncreased: unsafeCSS(`var(--md-sys-shape-corner-large-increased, ${CornerValue.largeIncreased})`),\r\n\r\n /** Increased extra large rounded symmetric shape. */\r\n extraLargeIncreased: unsafeCSS(\r\n `var(--md-sys-shape-corner-extra-large-increased, ${CornerValue.extraLargeIncreased})`,\r\n ),\r\n\r\n /** Extra extra large rounded symmetric shape. */\r\n extraExtraLarge: unsafeCSS(`var(--md-sys-shape-corner-extra-extra-large, ${CornerValue.extraExtraLarge})`),\r\n\r\n /** Design tokens that control specific corners. */\r\n value: CornerValue,\r\n },\r\n}"
|
|
5511
5511
|
},
|
|
5512
|
-
"default": "{ corner: { /** Fully rounded symmetric shape. */ full: unsafeCSS(\"var(--md-sys-shape-corner-full, 624.9375rem)\"), /** Extra large rounded asymmetric shape directed towards the top. */ extraLargeTop: unsafeCSS( `var(--md-sys-shape-corner-extra-large-top, ${CornerValue.extraLarge} ${CornerValue.extraLarge} ${CornerValue.none} ${CornerValue.none})
|
|
5512
|
+
"default": "{ corner: { /** Fully rounded symmetric shape. */ full: unsafeCSS(\"var(--md-sys-shape-corner-full, 624.9375rem)\"), /** Extra large rounded asymmetric shape directed towards the top. */ extraLargeTop: unsafeCSS( `var(--md-sys-shape-corner-extra-large-top, ${CornerValue.extraLarge} ${CornerValue.extraLarge} ${CornerValue.none} ${CornerValue.none})`, ), /** Extra large rounded symmetric shape. */ extraLarge: unsafeCSS(`var(--md-sys-shape-corner-extra-large, ${CornerValue.extraLarge})`), /** Extra large rounded asymmetric shape directed towards the end. */ extraLargeEnd: unsafeCSS( `${CornerValue.none} ${CornerValue.extraLarge} ${CornerValue.extraLarge} ${CornerValue.none}`, ), /** Extra large rounded asymmetric shape directed towards the start. */ extraLargeStart: unsafeCSS( `${CornerValue.extraLarge} ${CornerValue.none} ${CornerValue.none} ${CornerValue.extraLarge}`, ), /** Large rounded asymmetric shape directed towards the top. */ largeTop: unsafeCSS( `var(--md-sys-shape-corner-large-top, ${CornerValue.large} ${CornerValue.large} ${CornerValue.none} ${CornerValue.none})`, ), /** Large rounded asymmetric shape directed towards the end. */ largeEnd: unsafeCSS( `var(--md-sys-shape-corner-large-end, ${CornerValue.none} ${CornerValue.large} ${CornerValue.large} ${CornerValue.none})`, ), /** Large rounded asymmetric shape directed towards the start. */ largeStart: unsafeCSS( `var(--md-sys-shape-corner-large-start, ${CornerValue.large} ${CornerValue.none} ${CornerValue.none} ${CornerValue.large})`, ), /** Large rounded symmetric shape. */ large: unsafeCSS(`var(--md-sys-shape-corner-large, ${CornerValue.large})`), /** Medium rounded symmetric shape. */ medium: unsafeCSS(`var(--md-sys-shape-corner-medium, ${CornerValue.medium})`), /** Medium rounded asymmetric shape directed towards the top. */ mediumTop: unsafeCSS(`${CornerValue.medium} ${CornerValue.medium} ${CornerValue.none} ${CornerValue.none}`), /** Medium rounded asymmetric shape directed towards the end. */ mediumEnd: unsafeCSS(`${CornerValue.none} ${CornerValue.medium} ${CornerValue.medium} ${CornerValue.none}`), /** Medium rounded asymmetric shape directed towards the start. */ mediumStart: unsafeCSS(`${CornerValue.medium} ${CornerValue.none} ${CornerValue.none} ${CornerValue.medium}`), /** Small rounded symmetric shape. */ small: unsafeCSS(`var(--md-sys-shape-corner-small, ${CornerValue.small})`), /** Small rounded asymmetric shape directed towards the top. */ smallTop: unsafeCSS(`${CornerValue.small} ${CornerValue.small} ${CornerValue.none} ${CornerValue.none}`), /** Small rounded asymmetric shape directed towards the end. */ smallEnd: unsafeCSS(`${CornerValue.none} ${CornerValue.small} ${CornerValue.small} ${CornerValue.none}`), /** Small rounded asymmetric shape directed towards the start. */ smallStart: unsafeCSS(`${CornerValue.small} ${CornerValue.none} ${CornerValue.none} ${CornerValue.small}`), /** Extra small rounded asymmetric shape directed towards the top. */ extraSmallTop: unsafeCSS( `var(--md-sys-shape-corner-extra-small-top, ${CornerValue.extraSmall} ${CornerValue.extraSmall} ${CornerValue.none} ${CornerValue.none})`, ), /** Extra small rounded symmetric shape. */ extraSmall: unsafeCSS(`var(--md-sys-shape-corner-extra-small, ${CornerValue.extraSmall})`), /** Extra small rounded asymmetric shape directed towards the end. */ extraSmallEnd: unsafeCSS( `${CornerValue.none} ${CornerValue.extraSmall} ${CornerValue.extraSmall} ${CornerValue.none}`, ), /** Extra small rounded asymmetric shape directed towards the start. */ extraSmallStart: unsafeCSS( `${CornerValue.extraSmall} ${CornerValue.none} ${CornerValue.none} ${CornerValue.extraSmall}`, ), /** Extra small rounded asymmetric shape directed towards the bottom. */ extraSmallBottom: unsafeCSS( `${CornerValue.none} ${CornerValue.none} ${CornerValue.extraSmall} ${CornerValue.extraSmall}`, ), /** No rounding. */ none: unsafeCSS(`var(--md-sys-shape-corner-none, ${CornerValue.none})`), /** Increased large rounded symmetric shape. */ largeIncreased: unsafeCSS(`var(--md-sys-shape-corner-large-increased, ${CornerValue.largeIncreased})`), /** Increased extra large rounded symmetric shape. */ extraLargeIncreased: unsafeCSS( `var(--md-sys-shape-corner-extra-large-increased, ${CornerValue.extraLargeIncreased})`, ), /** Extra extra large rounded symmetric shape. */ extraExtraLarge: unsafeCSS(`var(--md-sys-shape-corner-extra-extra-large, ${CornerValue.extraExtraLarge})`), /** Design tokens that control specific corners. */ value: CornerValue, }, }",
|
|
5513
5513
|
"description": "Design tokens that control shape."
|
|
5514
5514
|
}
|
|
5515
5515
|
],
|
|
@@ -6708,14 +6708,6 @@
|
|
|
6708
6708
|
]
|
|
6709
6709
|
}
|
|
6710
6710
|
],
|
|
6711
|
-
"events": [
|
|
6712
|
-
{
|
|
6713
|
-
"name": "click",
|
|
6714
|
-
"type": {
|
|
6715
|
-
"text": "MouseEvent"
|
|
6716
|
-
}
|
|
6717
|
-
}
|
|
6718
|
-
],
|
|
6719
6711
|
"attributes": [
|
|
6720
6712
|
{
|
|
6721
6713
|
"name": "href",
|
|
@@ -17256,6 +17248,24 @@
|
|
|
17256
17248
|
"text": "'loading' | 'no-data' | 'content'"
|
|
17257
17249
|
}
|
|
17258
17250
|
},
|
|
17251
|
+
{
|
|
17252
|
+
"kind": "method",
|
|
17253
|
+
"name": "#handleOptionStateChange",
|
|
17254
|
+
"privacy": "private",
|
|
17255
|
+
"return": {
|
|
17256
|
+
"type": {
|
|
17257
|
+
"text": "void"
|
|
17258
|
+
}
|
|
17259
|
+
},
|
|
17260
|
+
"parameters": [
|
|
17261
|
+
{
|
|
17262
|
+
"name": "e",
|
|
17263
|
+
"type": {
|
|
17264
|
+
"text": "Event"
|
|
17265
|
+
}
|
|
17266
|
+
}
|
|
17267
|
+
]
|
|
17268
|
+
},
|
|
17259
17269
|
{
|
|
17260
17270
|
"kind": "method",
|
|
17261
17271
|
"name": "#handleNoDataSlotChange",
|
|
@@ -19088,6 +19098,24 @@
|
|
|
19088
19098
|
],
|
|
19089
19099
|
"description": "Clears the value of the element."
|
|
19090
19100
|
},
|
|
19101
|
+
{
|
|
19102
|
+
"kind": "method",
|
|
19103
|
+
"name": "#handleOptionStateChange",
|
|
19104
|
+
"privacy": "private",
|
|
19105
|
+
"return": {
|
|
19106
|
+
"type": {
|
|
19107
|
+
"text": "void"
|
|
19108
|
+
}
|
|
19109
|
+
},
|
|
19110
|
+
"parameters": [
|
|
19111
|
+
{
|
|
19112
|
+
"name": "e",
|
|
19113
|
+
"type": {
|
|
19114
|
+
"text": "Event"
|
|
19115
|
+
}
|
|
19116
|
+
}
|
|
19117
|
+
]
|
|
19118
|
+
},
|
|
19091
19119
|
{
|
|
19092
19120
|
"kind": "method",
|
|
19093
19121
|
"name": "#handleMutation",
|
|
@@ -21957,8 +21985,8 @@
|
|
|
21957
21985
|
"text": "MouseEvent"
|
|
21958
21986
|
},
|
|
21959
21987
|
"inheritedFrom": {
|
|
21960
|
-
"name": "
|
|
21961
|
-
"module": "src/core/shared/mixins/
|
|
21988
|
+
"name": "KeyboardClick",
|
|
21989
|
+
"module": "src/core/shared/mixins/KeyboardClick.ts"
|
|
21962
21990
|
}
|
|
21963
21991
|
}
|
|
21964
21992
|
]
|
|
@@ -22384,15 +22412,8 @@
|
|
|
22384
22412
|
],
|
|
22385
22413
|
"events": [
|
|
22386
22414
|
{
|
|
22387
|
-
"name": "click",
|
|
22388
|
-
"type": {
|
|
22389
|
-
"text": "MouseEvent"
|
|
22390
|
-
},
|
|
22391
22415
|
"description": "Dispatched when the element is clicked.",
|
|
22392
|
-
"
|
|
22393
|
-
"name": "LinkButton",
|
|
22394
|
-
"module": "src/core/shared/mixins/LinkButton.ts"
|
|
22395
|
-
}
|
|
22416
|
+
"name": "click"
|
|
22396
22417
|
}
|
|
22397
22418
|
],
|
|
22398
22419
|
"attributes": [
|
|
@@ -24923,8 +24944,8 @@
|
|
|
24923
24944
|
},
|
|
24924
24945
|
"description": "Dispatched when the element is clicked.",
|
|
24925
24946
|
"inheritedFrom": {
|
|
24926
|
-
"name": "
|
|
24927
|
-
"module": "src/core/shared/mixins/
|
|
24947
|
+
"name": "KeyboardClick",
|
|
24948
|
+
"module": "src/core/shared/mixins/KeyboardClick.ts"
|
|
24928
24949
|
}
|
|
24929
24950
|
}
|
|
24930
24951
|
],
|
|
@@ -26903,8 +26924,8 @@
|
|
|
26903
26924
|
},
|
|
26904
26925
|
"description": "Dispatched when the element is clicked.",
|
|
26905
26926
|
"inheritedFrom": {
|
|
26906
|
-
"name": "
|
|
26907
|
-
"module": "src/core/shared/mixins/
|
|
26927
|
+
"name": "KeyboardClick",
|
|
26928
|
+
"module": "src/core/shared/mixins/KeyboardClick.ts"
|
|
26908
26929
|
}
|
|
26909
26930
|
}
|
|
26910
26931
|
],
|
|
@@ -32354,8 +32375,8 @@
|
|
|
32354
32375
|
},
|
|
32355
32376
|
"description": "Dispatched when the element is clicked.",
|
|
32356
32377
|
"inheritedFrom": {
|
|
32357
|
-
"name": "
|
|
32358
|
-
"module": "src/core/shared/mixins/
|
|
32378
|
+
"name": "KeyboardClick",
|
|
32379
|
+
"module": "src/core/shared/mixins/KeyboardClick.ts"
|
|
32359
32380
|
}
|
|
32360
32381
|
}
|
|
32361
32382
|
],
|
|
@@ -45030,8 +45051,8 @@
|
|
|
45030
45051
|
},
|
|
45031
45052
|
"description": "Dispatched when the element is clicked.",
|
|
45032
45053
|
"inheritedFrom": {
|
|
45033
|
-
"name": "
|
|
45034
|
-
"module": "src/core/shared/mixins/
|
|
45054
|
+
"name": "KeyboardClick",
|
|
45055
|
+
"module": "src/core/shared/mixins/KeyboardClick.ts"
|
|
45035
45056
|
}
|
|
45036
45057
|
}
|
|
45037
45058
|
],
|
|
@@ -45691,8 +45712,8 @@
|
|
|
45691
45712
|
},
|
|
45692
45713
|
"description": "Dispatched when the element is clicked.",
|
|
45693
45714
|
"inheritedFrom": {
|
|
45694
|
-
"name": "
|
|
45695
|
-
"module": "src/core/shared/mixins/
|
|
45715
|
+
"name": "KeyboardClick",
|
|
45716
|
+
"module": "src/core/shared/mixins/KeyboardClick.ts"
|
|
45696
45717
|
}
|
|
45697
45718
|
}
|
|
45698
45719
|
],
|
|
@@ -48483,8 +48504,8 @@
|
|
|
48483
48504
|
"text": "MouseEvent"
|
|
48484
48505
|
},
|
|
48485
48506
|
"inheritedFrom": {
|
|
48486
|
-
"name": "
|
|
48487
|
-
"module": "src/core/shared/mixins/
|
|
48507
|
+
"name": "KeyboardClick",
|
|
48508
|
+
"module": "src/core/shared/mixins/KeyboardClick.ts"
|
|
48488
48509
|
}
|
|
48489
48510
|
}
|
|
48490
48511
|
],
|
|
@@ -49874,15 +49895,8 @@
|
|
|
49874
49895
|
],
|
|
49875
49896
|
"events": [
|
|
49876
49897
|
{
|
|
49877
|
-
"name": "click",
|
|
49878
|
-
"type": {
|
|
49879
|
-
"text": "MouseEvent"
|
|
49880
|
-
},
|
|
49881
49898
|
"description": "Dispatched when the element is clicked.",
|
|
49882
|
-
"
|
|
49883
|
-
"name": "LinkButton",
|
|
49884
|
-
"module": "src/core/shared/mixins/LinkButton.ts"
|
|
49885
|
-
}
|
|
49899
|
+
"name": "click"
|
|
49886
49900
|
}
|
|
49887
49901
|
],
|
|
49888
49902
|
"attributes": [
|
|
@@ -59390,6 +59404,24 @@
|
|
|
59390
59404
|
],
|
|
59391
59405
|
"description": "Clears the value of the element."
|
|
59392
59406
|
},
|
|
59407
|
+
{
|
|
59408
|
+
"kind": "method",
|
|
59409
|
+
"name": "#handleOptionStateChange",
|
|
59410
|
+
"privacy": "private",
|
|
59411
|
+
"return": {
|
|
59412
|
+
"type": {
|
|
59413
|
+
"text": "void"
|
|
59414
|
+
}
|
|
59415
|
+
},
|
|
59416
|
+
"parameters": [
|
|
59417
|
+
{
|
|
59418
|
+
"name": "e",
|
|
59419
|
+
"type": {
|
|
59420
|
+
"text": "Event"
|
|
59421
|
+
}
|
|
59422
|
+
}
|
|
59423
|
+
]
|
|
59424
|
+
},
|
|
59393
59425
|
{
|
|
59394
59426
|
"kind": "method",
|
|
59395
59427
|
"name": "#handleMutation",
|
package/dist/fab.js
CHANGED
|
@@ -58,7 +58,7 @@ const FabSizeToken = {
|
|
|
58
58
|
labelTextFontWeight: unsafeCSS(`var(--m3e-fab-large-label-text-font-weight, var(--m3e-fab-label-text-font-weight, ${DesignToken.typescale.standard.headline.small.fontWeight}))`),
|
|
59
59
|
labelTextLineHeight: unsafeCSS(`var(--m3e-fab-large-label-text-line-height, var(--m3e-fab-label-text-line-height, ${DesignToken.typescale.standard.headline.small.lineHeight}))`),
|
|
60
60
|
labelTextTracking: unsafeCSS(`var(--m3e-fab-large-label-text-tracking, var(--m3e-fab-label-text-tracking, ${DesignToken.typescale.standard.headline.small.tracking}))`),
|
|
61
|
-
iconSize: unsafeCSS("
|
|
61
|
+
iconSize: unsafeCSS("var(--m3e-fab-large-icon-size, var(--m3e-fab-icon-size, 2.25rem))"),
|
|
62
62
|
extendedIconSize: unsafeCSS("var(--m3e-fab-large-icon-size, var(--m3e-fab-icon-size, 2.25rem))"),
|
|
63
63
|
shape: unsafeCSS(`var(--m3e-fab-large-shape, var(--m3e-fab-shape, ${DesignToken.shape.corner.extraLarge}))`),
|
|
64
64
|
leadingSpace: unsafeCSS(`calc(var(--m3e-fab-large-leading-space, var(--m3e-fab-leading-space, 1.75rem)) + calc(${DesignToken.density.calc(-3)} / 2))`),
|