@breadstone/mosaik-elements-svelte 0.1.70 → 0.1.71
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/CHANGELOG.md +6 -0
- package/index.mjs +495 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/index.mjs
CHANGED
|
@@ -38073,6 +38073,18 @@ function sO() {
|
|
|
38073
38073
|
resize: none;
|
|
38074
38074
|
}
|
|
38075
38075
|
|
|
38076
|
+
:host input[part="input"] {
|
|
38077
|
+
min-inline-size: 0;
|
|
38078
|
+
}
|
|
38079
|
+
|
|
38080
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
38081
|
+
text-overflow: ellipsis;
|
|
38082
|
+
}
|
|
38083
|
+
|
|
38084
|
+
:host input[part="input"]:placeholder-shown {
|
|
38085
|
+
text-overflow: ellipsis;
|
|
38086
|
+
}
|
|
38087
|
+
|
|
38076
38088
|
:host [part="label"] {
|
|
38077
38089
|
-webkit-user-select: none;
|
|
38078
38090
|
-moz-user-select: none;
|
|
@@ -38080,6 +38092,7 @@ function sO() {
|
|
|
38080
38092
|
pointer-events: none;
|
|
38081
38093
|
transform-origin: 0 0;
|
|
38082
38094
|
text-align: left;
|
|
38095
|
+
max-inline-size: calc(100% - var(--textbox-padding-left) - var(--textbox-padding-right));
|
|
38083
38096
|
text-overflow: ellipsis;
|
|
38084
38097
|
white-space: nowrap;
|
|
38085
38098
|
will-change: transform;
|
|
@@ -38359,6 +38372,18 @@ function cO() {
|
|
|
38359
38372
|
resize: none;
|
|
38360
38373
|
}
|
|
38361
38374
|
|
|
38375
|
+
:host input[part="input"] {
|
|
38376
|
+
min-inline-size: 0;
|
|
38377
|
+
}
|
|
38378
|
+
|
|
38379
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
38380
|
+
text-overflow: ellipsis;
|
|
38381
|
+
}
|
|
38382
|
+
|
|
38383
|
+
:host input[part="input"]:placeholder-shown {
|
|
38384
|
+
text-overflow: ellipsis;
|
|
38385
|
+
}
|
|
38386
|
+
|
|
38362
38387
|
:host [part="label"] {
|
|
38363
38388
|
-webkit-user-select: none;
|
|
38364
38389
|
-moz-user-select: none;
|
|
@@ -38366,6 +38391,7 @@ function cO() {
|
|
|
38366
38391
|
pointer-events: none;
|
|
38367
38392
|
transform-origin: 0 0;
|
|
38368
38393
|
text-align: left;
|
|
38394
|
+
max-inline-size: calc(100% - var(--textbox-padding-left) - var(--textbox-padding-right));
|
|
38369
38395
|
text-overflow: ellipsis;
|
|
38370
38396
|
white-space: nowrap;
|
|
38371
38397
|
will-change: transform;
|
|
@@ -38868,6 +38894,18 @@ function lO() {
|
|
|
38868
38894
|
resize: none;
|
|
38869
38895
|
}
|
|
38870
38896
|
|
|
38897
|
+
:host input[part="input"] {
|
|
38898
|
+
min-inline-size: 0;
|
|
38899
|
+
}
|
|
38900
|
+
|
|
38901
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
38902
|
+
text-overflow: ellipsis;
|
|
38903
|
+
}
|
|
38904
|
+
|
|
38905
|
+
:host input[part="input"]:placeholder-shown {
|
|
38906
|
+
text-overflow: ellipsis;
|
|
38907
|
+
}
|
|
38908
|
+
|
|
38871
38909
|
:host [part="label"] {
|
|
38872
38910
|
-webkit-user-select: none;
|
|
38873
38911
|
-moz-user-select: none;
|
|
@@ -38875,6 +38913,7 @@ function lO() {
|
|
|
38875
38913
|
pointer-events: none;
|
|
38876
38914
|
transform-origin: 0 0;
|
|
38877
38915
|
text-align: left;
|
|
38916
|
+
max-inline-size: calc(100% - var(--textbox-padding-left) - var(--textbox-padding-right));
|
|
38878
38917
|
text-overflow: ellipsis;
|
|
38879
38918
|
white-space: nowrap;
|
|
38880
38919
|
will-change: transform;
|
|
@@ -69187,6 +69226,18 @@ function LI() {
|
|
|
69187
69226
|
transition-property: inherit;
|
|
69188
69227
|
}
|
|
69189
69228
|
|
|
69229
|
+
:host input[part="input"] {
|
|
69230
|
+
min-inline-size: 0;
|
|
69231
|
+
}
|
|
69232
|
+
|
|
69233
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
69234
|
+
text-overflow: ellipsis;
|
|
69235
|
+
}
|
|
69236
|
+
|
|
69237
|
+
:host input[part="input"]:placeholder-shown {
|
|
69238
|
+
text-overflow: ellipsis;
|
|
69239
|
+
}
|
|
69240
|
+
|
|
69190
69241
|
:host [part="label"] {
|
|
69191
69242
|
-webkit-user-select: none;
|
|
69192
69243
|
-moz-user-select: none;
|
|
@@ -69194,6 +69245,7 @@ function LI() {
|
|
|
69194
69245
|
pointer-events: none;
|
|
69195
69246
|
transform-origin: 0 0;
|
|
69196
69247
|
text-align: left;
|
|
69248
|
+
max-inline-size: calc(100% - var(--chipbox-padding-left) - var(--chipbox-padding-right));
|
|
69197
69249
|
text-overflow: ellipsis;
|
|
69198
69250
|
white-space: nowrap;
|
|
69199
69251
|
will-change: transform;
|
|
@@ -69416,6 +69468,18 @@ function RI() {
|
|
|
69416
69468
|
transition-property: inherit;
|
|
69417
69469
|
}
|
|
69418
69470
|
|
|
69471
|
+
:host input[part="input"] {
|
|
69472
|
+
min-inline-size: 0;
|
|
69473
|
+
}
|
|
69474
|
+
|
|
69475
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
69476
|
+
text-overflow: ellipsis;
|
|
69477
|
+
}
|
|
69478
|
+
|
|
69479
|
+
:host input[part="input"]:placeholder-shown {
|
|
69480
|
+
text-overflow: ellipsis;
|
|
69481
|
+
}
|
|
69482
|
+
|
|
69419
69483
|
:host [part="label"] {
|
|
69420
69484
|
-webkit-user-select: none;
|
|
69421
69485
|
-moz-user-select: none;
|
|
@@ -69423,6 +69487,7 @@ function RI() {
|
|
|
69423
69487
|
pointer-events: none;
|
|
69424
69488
|
transform-origin: 0 0;
|
|
69425
69489
|
text-align: left;
|
|
69490
|
+
max-inline-size: calc(100% - var(--chipbox-padding-left) - var(--chipbox-padding-right));
|
|
69426
69491
|
text-overflow: ellipsis;
|
|
69427
69492
|
white-space: nowrap;
|
|
69428
69493
|
will-change: transform;
|
|
@@ -69863,6 +69928,18 @@ function zI() {
|
|
|
69863
69928
|
transition-property: inherit;
|
|
69864
69929
|
}
|
|
69865
69930
|
|
|
69931
|
+
:host input[part="input"] {
|
|
69932
|
+
min-inline-size: 0;
|
|
69933
|
+
}
|
|
69934
|
+
|
|
69935
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
69936
|
+
text-overflow: ellipsis;
|
|
69937
|
+
}
|
|
69938
|
+
|
|
69939
|
+
:host input[part="input"]:placeholder-shown {
|
|
69940
|
+
text-overflow: ellipsis;
|
|
69941
|
+
}
|
|
69942
|
+
|
|
69866
69943
|
:host [part="label"] {
|
|
69867
69944
|
-webkit-user-select: none;
|
|
69868
69945
|
-moz-user-select: none;
|
|
@@ -69870,6 +69947,7 @@ function zI() {
|
|
|
69870
69947
|
pointer-events: none;
|
|
69871
69948
|
transform-origin: 0 0;
|
|
69872
69949
|
text-align: left;
|
|
69950
|
+
max-inline-size: calc(100% - var(--chipbox-padding-left) - var(--chipbox-padding-right));
|
|
69873
69951
|
text-overflow: ellipsis;
|
|
69874
69952
|
white-space: nowrap;
|
|
69875
69953
|
will-change: transform;
|
|
@@ -74263,6 +74341,18 @@ function QL() {
|
|
|
74263
74341
|
position: relative;
|
|
74264
74342
|
}
|
|
74265
74343
|
|
|
74344
|
+
:host input[part="input"] {
|
|
74345
|
+
min-inline-size: 0;
|
|
74346
|
+
}
|
|
74347
|
+
|
|
74348
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
74349
|
+
text-overflow: ellipsis;
|
|
74350
|
+
}
|
|
74351
|
+
|
|
74352
|
+
:host input[part="input"]:placeholder-shown {
|
|
74353
|
+
text-overflow: ellipsis;
|
|
74354
|
+
}
|
|
74355
|
+
|
|
74266
74356
|
:host [part="label"] {
|
|
74267
74357
|
-webkit-user-select: none;
|
|
74268
74358
|
-moz-user-select: none;
|
|
@@ -74270,6 +74360,7 @@ function QL() {
|
|
|
74270
74360
|
pointer-events: none;
|
|
74271
74361
|
transform-origin: 0 0;
|
|
74272
74362
|
text-align: left;
|
|
74363
|
+
max-inline-size: calc(100% - var(--numberbox-padding-left) - var(--numberbox-padding-right));
|
|
74273
74364
|
text-overflow: ellipsis;
|
|
74274
74365
|
white-space: nowrap;
|
|
74275
74366
|
will-change: transform;
|
|
@@ -74507,6 +74598,18 @@ function $L() {
|
|
|
74507
74598
|
position: relative;
|
|
74508
74599
|
}
|
|
74509
74600
|
|
|
74601
|
+
:host input[part="input"] {
|
|
74602
|
+
min-inline-size: 0;
|
|
74603
|
+
}
|
|
74604
|
+
|
|
74605
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
74606
|
+
text-overflow: ellipsis;
|
|
74607
|
+
}
|
|
74608
|
+
|
|
74609
|
+
:host input[part="input"]:placeholder-shown {
|
|
74610
|
+
text-overflow: ellipsis;
|
|
74611
|
+
}
|
|
74612
|
+
|
|
74510
74613
|
:host [part="label"] {
|
|
74511
74614
|
-webkit-user-select: none;
|
|
74512
74615
|
-moz-user-select: none;
|
|
@@ -74514,6 +74617,7 @@ function $L() {
|
|
|
74514
74617
|
pointer-events: none;
|
|
74515
74618
|
transform-origin: 0 0;
|
|
74516
74619
|
text-align: left;
|
|
74620
|
+
max-inline-size: calc(100% - var(--numberbox-padding-left) - var(--numberbox-padding-right));
|
|
74517
74621
|
text-overflow: ellipsis;
|
|
74518
74622
|
white-space: nowrap;
|
|
74519
74623
|
will-change: transform;
|
|
@@ -75005,6 +75109,18 @@ function eR() {
|
|
|
75005
75109
|
position: relative;
|
|
75006
75110
|
}
|
|
75007
75111
|
|
|
75112
|
+
:host input[part="input"] {
|
|
75113
|
+
min-inline-size: 0;
|
|
75114
|
+
}
|
|
75115
|
+
|
|
75116
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
75117
|
+
text-overflow: ellipsis;
|
|
75118
|
+
}
|
|
75119
|
+
|
|
75120
|
+
:host input[part="input"]:placeholder-shown {
|
|
75121
|
+
text-overflow: ellipsis;
|
|
75122
|
+
}
|
|
75123
|
+
|
|
75008
75124
|
:host [part="label"] {
|
|
75009
75125
|
-webkit-user-select: none;
|
|
75010
75126
|
-moz-user-select: none;
|
|
@@ -75012,6 +75128,7 @@ function eR() {
|
|
|
75012
75128
|
pointer-events: none;
|
|
75013
75129
|
transform-origin: 0 0;
|
|
75014
75130
|
text-align: left;
|
|
75131
|
+
max-inline-size: calc(100% - var(--numberbox-padding-left) - var(--numberbox-padding-right));
|
|
75015
75132
|
text-overflow: ellipsis;
|
|
75016
75133
|
white-space: nowrap;
|
|
75017
75134
|
will-change: transform;
|
|
@@ -80125,6 +80242,18 @@ function ez() {
|
|
|
80125
80242
|
transition-property: inherit;
|
|
80126
80243
|
}
|
|
80127
80244
|
|
|
80245
|
+
:host input[part="input"] {
|
|
80246
|
+
min-inline-size: 0;
|
|
80247
|
+
}
|
|
80248
|
+
|
|
80249
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
80250
|
+
text-overflow: ellipsis;
|
|
80251
|
+
}
|
|
80252
|
+
|
|
80253
|
+
:host input[part="input"]:placeholder-shown {
|
|
80254
|
+
text-overflow: ellipsis;
|
|
80255
|
+
}
|
|
80256
|
+
|
|
80128
80257
|
:host [part="label"] {
|
|
80129
80258
|
-webkit-user-select: none;
|
|
80130
80259
|
-moz-user-select: none;
|
|
@@ -80132,6 +80261,7 @@ function ez() {
|
|
|
80132
80261
|
pointer-events: none;
|
|
80133
80262
|
transform-origin: 0 0;
|
|
80134
80263
|
text-align: left;
|
|
80264
|
+
max-inline-size: calc(100% - var(--colorbox-padding-left) - var(--colorbox-padding-right));
|
|
80135
80265
|
text-overflow: ellipsis;
|
|
80136
80266
|
white-space: nowrap;
|
|
80137
80267
|
will-change: transform;
|
|
@@ -80364,6 +80494,18 @@ function tz() {
|
|
|
80364
80494
|
transition-property: inherit;
|
|
80365
80495
|
}
|
|
80366
80496
|
|
|
80497
|
+
:host input[part="input"] {
|
|
80498
|
+
min-inline-size: 0;
|
|
80499
|
+
}
|
|
80500
|
+
|
|
80501
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
80502
|
+
text-overflow: ellipsis;
|
|
80503
|
+
}
|
|
80504
|
+
|
|
80505
|
+
:host input[part="input"]:placeholder-shown {
|
|
80506
|
+
text-overflow: ellipsis;
|
|
80507
|
+
}
|
|
80508
|
+
|
|
80367
80509
|
:host [part="label"] {
|
|
80368
80510
|
-webkit-user-select: none;
|
|
80369
80511
|
-moz-user-select: none;
|
|
@@ -80371,6 +80513,7 @@ function tz() {
|
|
|
80371
80513
|
pointer-events: none;
|
|
80372
80514
|
transform-origin: 0 0;
|
|
80373
80515
|
text-align: left;
|
|
80516
|
+
max-inline-size: calc(100% - var(--colorbox-padding-left) - var(--colorbox-padding-right));
|
|
80374
80517
|
text-overflow: ellipsis;
|
|
80375
80518
|
white-space: nowrap;
|
|
80376
80519
|
will-change: transform;
|
|
@@ -80821,6 +80964,18 @@ function nz() {
|
|
|
80821
80964
|
transition-property: inherit;
|
|
80822
80965
|
}
|
|
80823
80966
|
|
|
80967
|
+
:host input[part="input"] {
|
|
80968
|
+
min-inline-size: 0;
|
|
80969
|
+
}
|
|
80970
|
+
|
|
80971
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
80972
|
+
text-overflow: ellipsis;
|
|
80973
|
+
}
|
|
80974
|
+
|
|
80975
|
+
:host input[part="input"]:placeholder-shown {
|
|
80976
|
+
text-overflow: ellipsis;
|
|
80977
|
+
}
|
|
80978
|
+
|
|
80824
80979
|
:host [part="label"] {
|
|
80825
80980
|
-webkit-user-select: none;
|
|
80826
80981
|
-moz-user-select: none;
|
|
@@ -80828,6 +80983,7 @@ function nz() {
|
|
|
80828
80983
|
pointer-events: none;
|
|
80829
80984
|
transform-origin: 0 0;
|
|
80830
80985
|
text-align: left;
|
|
80986
|
+
max-inline-size: calc(100% - var(--colorbox-padding-left) - var(--colorbox-padding-right));
|
|
80831
80987
|
text-overflow: ellipsis;
|
|
80832
80988
|
white-space: nowrap;
|
|
80833
80989
|
will-change: transform;
|
|
@@ -82815,6 +82971,18 @@ function Ez() {
|
|
|
82815
82971
|
position: relative;
|
|
82816
82972
|
}
|
|
82817
82973
|
|
|
82974
|
+
:host input[part="input"] {
|
|
82975
|
+
min-inline-size: 0;
|
|
82976
|
+
}
|
|
82977
|
+
|
|
82978
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
82979
|
+
text-overflow: ellipsis;
|
|
82980
|
+
}
|
|
82981
|
+
|
|
82982
|
+
:host input[part="input"]:placeholder-shown {
|
|
82983
|
+
text-overflow: ellipsis;
|
|
82984
|
+
}
|
|
82985
|
+
|
|
82818
82986
|
:host [part="label"] {
|
|
82819
82987
|
-webkit-user-select: none;
|
|
82820
82988
|
-moz-user-select: none;
|
|
@@ -82822,6 +82990,7 @@ function Ez() {
|
|
|
82822
82990
|
pointer-events: none;
|
|
82823
82991
|
transform-origin: 0 0;
|
|
82824
82992
|
text-align: left;
|
|
82993
|
+
max-inline-size: calc(100% - var(--datebox-padding-left) - var(--datebox-padding-right));
|
|
82825
82994
|
text-overflow: ellipsis;
|
|
82826
82995
|
white-space: nowrap;
|
|
82827
82996
|
will-change: transform;
|
|
@@ -83059,6 +83228,18 @@ function Dz() {
|
|
|
83059
83228
|
position: relative;
|
|
83060
83229
|
}
|
|
83061
83230
|
|
|
83231
|
+
:host input[part="input"] {
|
|
83232
|
+
min-inline-size: 0;
|
|
83233
|
+
}
|
|
83234
|
+
|
|
83235
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
83236
|
+
text-overflow: ellipsis;
|
|
83237
|
+
}
|
|
83238
|
+
|
|
83239
|
+
:host input[part="input"]:placeholder-shown {
|
|
83240
|
+
text-overflow: ellipsis;
|
|
83241
|
+
}
|
|
83242
|
+
|
|
83062
83243
|
:host [part="label"] {
|
|
83063
83244
|
-webkit-user-select: none;
|
|
83064
83245
|
-moz-user-select: none;
|
|
@@ -83066,6 +83247,7 @@ function Dz() {
|
|
|
83066
83247
|
pointer-events: none;
|
|
83067
83248
|
transform-origin: 0 0;
|
|
83068
83249
|
text-align: left;
|
|
83250
|
+
max-inline-size: calc(100% - var(--datebox-padding-left) - var(--datebox-padding-right));
|
|
83069
83251
|
text-overflow: ellipsis;
|
|
83070
83252
|
white-space: nowrap;
|
|
83071
83253
|
will-change: transform;
|
|
@@ -83417,6 +83599,18 @@ function Oz() {
|
|
|
83417
83599
|
position: relative;
|
|
83418
83600
|
}
|
|
83419
83601
|
|
|
83602
|
+
:host input[part="input"] {
|
|
83603
|
+
min-inline-size: 0;
|
|
83604
|
+
}
|
|
83605
|
+
|
|
83606
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
83607
|
+
text-overflow: ellipsis;
|
|
83608
|
+
}
|
|
83609
|
+
|
|
83610
|
+
:host input[part="input"]:placeholder-shown {
|
|
83611
|
+
text-overflow: ellipsis;
|
|
83612
|
+
}
|
|
83613
|
+
|
|
83420
83614
|
:host [part="label"] {
|
|
83421
83615
|
-webkit-user-select: none;
|
|
83422
83616
|
-moz-user-select: none;
|
|
@@ -83424,6 +83618,7 @@ function Oz() {
|
|
|
83424
83618
|
pointer-events: none;
|
|
83425
83619
|
transform-origin: 0 0;
|
|
83426
83620
|
text-align: left;
|
|
83621
|
+
max-inline-size: calc(100% - var(--datebox-padding-left) - var(--datebox-padding-right));
|
|
83427
83622
|
text-overflow: ellipsis;
|
|
83428
83623
|
white-space: nowrap;
|
|
83429
83624
|
will-change: transform;
|
|
@@ -84973,6 +85168,18 @@ function Hz() {
|
|
|
84973
85168
|
position: relative;
|
|
84974
85169
|
}
|
|
84975
85170
|
|
|
85171
|
+
:host input[part="input"] {
|
|
85172
|
+
min-inline-size: 0;
|
|
85173
|
+
}
|
|
85174
|
+
|
|
85175
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
85176
|
+
text-overflow: ellipsis;
|
|
85177
|
+
}
|
|
85178
|
+
|
|
85179
|
+
:host input[part="input"]:placeholder-shown {
|
|
85180
|
+
text-overflow: ellipsis;
|
|
85181
|
+
}
|
|
85182
|
+
|
|
84976
85183
|
:host [part="label"] {
|
|
84977
85184
|
-webkit-user-select: none;
|
|
84978
85185
|
-moz-user-select: none;
|
|
@@ -84980,6 +85187,7 @@ function Hz() {
|
|
|
84980
85187
|
pointer-events: none;
|
|
84981
85188
|
transform-origin: 0 0;
|
|
84982
85189
|
text-align: left;
|
|
85190
|
+
max-inline-size: calc(100% - var(--datetimebox-padding-left) - var(--datetimebox-padding-right));
|
|
84983
85191
|
text-overflow: ellipsis;
|
|
84984
85192
|
white-space: nowrap;
|
|
84985
85193
|
will-change: transform;
|
|
@@ -85253,6 +85461,18 @@ function Uz() {
|
|
|
85253
85461
|
position: relative;
|
|
85254
85462
|
}
|
|
85255
85463
|
|
|
85464
|
+
:host input[part="input"] {
|
|
85465
|
+
min-inline-size: 0;
|
|
85466
|
+
}
|
|
85467
|
+
|
|
85468
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
85469
|
+
text-overflow: ellipsis;
|
|
85470
|
+
}
|
|
85471
|
+
|
|
85472
|
+
:host input[part="input"]:placeholder-shown {
|
|
85473
|
+
text-overflow: ellipsis;
|
|
85474
|
+
}
|
|
85475
|
+
|
|
85256
85476
|
:host [part="label"] {
|
|
85257
85477
|
-webkit-user-select: none;
|
|
85258
85478
|
-moz-user-select: none;
|
|
@@ -85260,6 +85480,7 @@ function Uz() {
|
|
|
85260
85480
|
pointer-events: none;
|
|
85261
85481
|
transform-origin: 0 0;
|
|
85262
85482
|
text-align: left;
|
|
85483
|
+
max-inline-size: calc(100% - var(--datetimebox-padding-left) - var(--datetimebox-padding-right));
|
|
85263
85484
|
text-overflow: ellipsis;
|
|
85264
85485
|
white-space: nowrap;
|
|
85265
85486
|
will-change: transform;
|
|
@@ -85730,6 +85951,18 @@ function Wz() {
|
|
|
85730
85951
|
position: relative;
|
|
85731
85952
|
}
|
|
85732
85953
|
|
|
85954
|
+
:host input[part="input"] {
|
|
85955
|
+
min-inline-size: 0;
|
|
85956
|
+
}
|
|
85957
|
+
|
|
85958
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
85959
|
+
text-overflow: ellipsis;
|
|
85960
|
+
}
|
|
85961
|
+
|
|
85962
|
+
:host input[part="input"]:placeholder-shown {
|
|
85963
|
+
text-overflow: ellipsis;
|
|
85964
|
+
}
|
|
85965
|
+
|
|
85733
85966
|
:host [part="label"] {
|
|
85734
85967
|
-webkit-user-select: none;
|
|
85735
85968
|
-moz-user-select: none;
|
|
@@ -85737,6 +85970,7 @@ function Wz() {
|
|
|
85737
85970
|
pointer-events: none;
|
|
85738
85971
|
transform-origin: 0 0;
|
|
85739
85972
|
text-align: left;
|
|
85973
|
+
max-inline-size: calc(100% - var(--datetimebox-padding-left) - var(--datetimebox-padding-right));
|
|
85740
85974
|
text-overflow: ellipsis;
|
|
85741
85975
|
white-space: nowrap;
|
|
85742
85976
|
will-change: transform;
|
|
@@ -86690,6 +86924,18 @@ function Xz() {
|
|
|
86690
86924
|
position: relative;
|
|
86691
86925
|
}
|
|
86692
86926
|
|
|
86927
|
+
:host input[part="input"] {
|
|
86928
|
+
min-inline-size: 0;
|
|
86929
|
+
}
|
|
86930
|
+
|
|
86931
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
86932
|
+
text-overflow: ellipsis;
|
|
86933
|
+
}
|
|
86934
|
+
|
|
86935
|
+
:host input[part="input"]:placeholder-shown {
|
|
86936
|
+
text-overflow: ellipsis;
|
|
86937
|
+
}
|
|
86938
|
+
|
|
86693
86939
|
:host [part="label"] {
|
|
86694
86940
|
-webkit-user-select: none;
|
|
86695
86941
|
-moz-user-select: none;
|
|
@@ -86697,6 +86943,7 @@ function Xz() {
|
|
|
86697
86943
|
pointer-events: none;
|
|
86698
86944
|
transform-origin: 0 0;
|
|
86699
86945
|
text-align: left;
|
|
86946
|
+
max-inline-size: calc(100% - var(--durationbox-padding-left) - var(--durationbox-padding-right));
|
|
86700
86947
|
text-overflow: ellipsis;
|
|
86701
86948
|
white-space: nowrap;
|
|
86702
86949
|
will-change: transform;
|
|
@@ -86952,6 +87199,18 @@ function Zz() {
|
|
|
86952
87199
|
position: relative;
|
|
86953
87200
|
}
|
|
86954
87201
|
|
|
87202
|
+
:host input[part="input"] {
|
|
87203
|
+
min-inline-size: 0;
|
|
87204
|
+
}
|
|
87205
|
+
|
|
87206
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
87207
|
+
text-overflow: ellipsis;
|
|
87208
|
+
}
|
|
87209
|
+
|
|
87210
|
+
:host input[part="input"]:placeholder-shown {
|
|
87211
|
+
text-overflow: ellipsis;
|
|
87212
|
+
}
|
|
87213
|
+
|
|
86955
87214
|
:host [part="label"] {
|
|
86956
87215
|
-webkit-user-select: none;
|
|
86957
87216
|
-moz-user-select: none;
|
|
@@ -86959,6 +87218,7 @@ function Zz() {
|
|
|
86959
87218
|
pointer-events: none;
|
|
86960
87219
|
transform-origin: 0 0;
|
|
86961
87220
|
text-align: left;
|
|
87221
|
+
max-inline-size: calc(100% - var(--durationbox-padding-left) - var(--durationbox-padding-right));
|
|
86962
87222
|
text-overflow: ellipsis;
|
|
86963
87223
|
white-space: nowrap;
|
|
86964
87224
|
will-change: transform;
|
|
@@ -87455,6 +87715,18 @@ function Qz() {
|
|
|
87455
87715
|
position: relative;
|
|
87456
87716
|
}
|
|
87457
87717
|
|
|
87718
|
+
:host input[part="input"] {
|
|
87719
|
+
min-inline-size: 0;
|
|
87720
|
+
}
|
|
87721
|
+
|
|
87722
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
87723
|
+
text-overflow: ellipsis;
|
|
87724
|
+
}
|
|
87725
|
+
|
|
87726
|
+
:host input[part="input"]:placeholder-shown {
|
|
87727
|
+
text-overflow: ellipsis;
|
|
87728
|
+
}
|
|
87729
|
+
|
|
87458
87730
|
:host [part="label"] {
|
|
87459
87731
|
-webkit-user-select: none;
|
|
87460
87732
|
-moz-user-select: none;
|
|
@@ -87462,6 +87734,7 @@ function Qz() {
|
|
|
87462
87734
|
pointer-events: none;
|
|
87463
87735
|
transform-origin: 0 0;
|
|
87464
87736
|
text-align: left;
|
|
87737
|
+
max-inline-size: calc(100% - var(--durationbox-padding-left) - var(--durationbox-padding-right));
|
|
87465
87738
|
text-overflow: ellipsis;
|
|
87466
87739
|
white-space: nowrap;
|
|
87467
87740
|
will-change: transform;
|
|
@@ -88038,6 +88311,18 @@ function iB() {
|
|
|
88038
88311
|
position: relative;
|
|
88039
88312
|
}
|
|
88040
88313
|
|
|
88314
|
+
:host input[part="input"] {
|
|
88315
|
+
min-inline-size: 0;
|
|
88316
|
+
}
|
|
88317
|
+
|
|
88318
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
88319
|
+
text-overflow: ellipsis;
|
|
88320
|
+
}
|
|
88321
|
+
|
|
88322
|
+
:host input[part="input"]:placeholder-shown {
|
|
88323
|
+
text-overflow: ellipsis;
|
|
88324
|
+
}
|
|
88325
|
+
|
|
88041
88326
|
:host [part="label"] {
|
|
88042
88327
|
-webkit-user-select: none;
|
|
88043
88328
|
-moz-user-select: none;
|
|
@@ -88045,6 +88330,7 @@ function iB() {
|
|
|
88045
88330
|
pointer-events: none;
|
|
88046
88331
|
transform-origin: 0 0;
|
|
88047
88332
|
text-align: left;
|
|
88333
|
+
max-inline-size: calc(100% - var(--filebox-padding-left) - var(--filebox-padding-right));
|
|
88048
88334
|
text-overflow: ellipsis;
|
|
88049
88335
|
white-space: nowrap;
|
|
88050
88336
|
will-change: transform;
|
|
@@ -88261,6 +88547,18 @@ function aB() {
|
|
|
88261
88547
|
position: relative;
|
|
88262
88548
|
}
|
|
88263
88549
|
|
|
88550
|
+
:host input[part="input"] {
|
|
88551
|
+
min-inline-size: 0;
|
|
88552
|
+
}
|
|
88553
|
+
|
|
88554
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
88555
|
+
text-overflow: ellipsis;
|
|
88556
|
+
}
|
|
88557
|
+
|
|
88558
|
+
:host input[part="input"]:placeholder-shown {
|
|
88559
|
+
text-overflow: ellipsis;
|
|
88560
|
+
}
|
|
88561
|
+
|
|
88264
88562
|
:host [part="label"] {
|
|
88265
88563
|
-webkit-user-select: none;
|
|
88266
88564
|
-moz-user-select: none;
|
|
@@ -88268,6 +88566,7 @@ function aB() {
|
|
|
88268
88566
|
pointer-events: none;
|
|
88269
88567
|
transform-origin: 0 0;
|
|
88270
88568
|
text-align: left;
|
|
88569
|
+
max-inline-size: calc(100% - var(--filebox-padding-left) - var(--filebox-padding-right));
|
|
88271
88570
|
text-overflow: ellipsis;
|
|
88272
88571
|
white-space: nowrap;
|
|
88273
88572
|
will-change: transform;
|
|
@@ -88691,6 +88990,18 @@ function oB() {
|
|
|
88691
88990
|
position: relative;
|
|
88692
88991
|
}
|
|
88693
88992
|
|
|
88993
|
+
:host input[part="input"] {
|
|
88994
|
+
min-inline-size: 0;
|
|
88995
|
+
}
|
|
88996
|
+
|
|
88997
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
88998
|
+
text-overflow: ellipsis;
|
|
88999
|
+
}
|
|
89000
|
+
|
|
89001
|
+
:host input[part="input"]:placeholder-shown {
|
|
89002
|
+
text-overflow: ellipsis;
|
|
89003
|
+
}
|
|
89004
|
+
|
|
88694
89005
|
:host [part="label"] {
|
|
88695
89006
|
-webkit-user-select: none;
|
|
88696
89007
|
-moz-user-select: none;
|
|
@@ -88698,6 +89009,7 @@ function oB() {
|
|
|
88698
89009
|
pointer-events: none;
|
|
88699
89010
|
transform-origin: 0 0;
|
|
88700
89011
|
text-align: left;
|
|
89012
|
+
max-inline-size: calc(100% - var(--filebox-padding-left) - var(--filebox-padding-right));
|
|
88701
89013
|
text-overflow: ellipsis;
|
|
88702
89014
|
white-space: nowrap;
|
|
88703
89015
|
will-change: transform;
|
|
@@ -94964,6 +95276,18 @@ function eH() {
|
|
|
94964
95276
|
position: relative;
|
|
94965
95277
|
}
|
|
94966
95278
|
|
|
95279
|
+
:host input[part="input"] {
|
|
95280
|
+
min-inline-size: 0;
|
|
95281
|
+
}
|
|
95282
|
+
|
|
95283
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
95284
|
+
text-overflow: ellipsis;
|
|
95285
|
+
}
|
|
95286
|
+
|
|
95287
|
+
:host input[part="input"]:placeholder-shown {
|
|
95288
|
+
text-overflow: ellipsis;
|
|
95289
|
+
}
|
|
95290
|
+
|
|
94967
95291
|
:host [part="label"] {
|
|
94968
95292
|
-webkit-user-select: none;
|
|
94969
95293
|
-moz-user-select: none;
|
|
@@ -94971,6 +95295,7 @@ function eH() {
|
|
|
94971
95295
|
pointer-events: none;
|
|
94972
95296
|
transform-origin: 0 0;
|
|
94973
95297
|
text-align: left;
|
|
95298
|
+
max-inline-size: calc(100% - var(--passwordbox-padding-left) - var(--passwordbox-padding-right));
|
|
94974
95299
|
text-overflow: ellipsis;
|
|
94975
95300
|
white-space: nowrap;
|
|
94976
95301
|
will-change: transform;
|
|
@@ -95186,6 +95511,18 @@ function tH() {
|
|
|
95186
95511
|
position: relative;
|
|
95187
95512
|
}
|
|
95188
95513
|
|
|
95514
|
+
:host input[part="input"] {
|
|
95515
|
+
min-inline-size: 0;
|
|
95516
|
+
}
|
|
95517
|
+
|
|
95518
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
95519
|
+
text-overflow: ellipsis;
|
|
95520
|
+
}
|
|
95521
|
+
|
|
95522
|
+
:host input[part="input"]:placeholder-shown {
|
|
95523
|
+
text-overflow: ellipsis;
|
|
95524
|
+
}
|
|
95525
|
+
|
|
95189
95526
|
:host [part="label"] {
|
|
95190
95527
|
-webkit-user-select: none;
|
|
95191
95528
|
-moz-user-select: none;
|
|
@@ -95193,6 +95530,7 @@ function tH() {
|
|
|
95193
95530
|
pointer-events: none;
|
|
95194
95531
|
transform-origin: 0 0;
|
|
95195
95532
|
text-align: left;
|
|
95533
|
+
max-inline-size: calc(100% - var(--passwordbox-padding-left) - var(--passwordbox-padding-right));
|
|
95196
95534
|
text-overflow: ellipsis;
|
|
95197
95535
|
white-space: nowrap;
|
|
95198
95536
|
will-change: transform;
|
|
@@ -95615,6 +95953,18 @@ function nH() {
|
|
|
95615
95953
|
position: relative;
|
|
95616
95954
|
}
|
|
95617
95955
|
|
|
95956
|
+
:host input[part="input"] {
|
|
95957
|
+
min-inline-size: 0;
|
|
95958
|
+
}
|
|
95959
|
+
|
|
95960
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
95961
|
+
text-overflow: ellipsis;
|
|
95962
|
+
}
|
|
95963
|
+
|
|
95964
|
+
:host input[part="input"]:placeholder-shown {
|
|
95965
|
+
text-overflow: ellipsis;
|
|
95966
|
+
}
|
|
95967
|
+
|
|
95618
95968
|
:host [part="label"] {
|
|
95619
95969
|
-webkit-user-select: none;
|
|
95620
95970
|
-moz-user-select: none;
|
|
@@ -95622,6 +95972,7 @@ function nH() {
|
|
|
95622
95972
|
pointer-events: none;
|
|
95623
95973
|
transform-origin: 0 0;
|
|
95624
95974
|
text-align: left;
|
|
95975
|
+
max-inline-size: calc(100% - var(--passwordbox-padding-left) - var(--passwordbox-padding-right));
|
|
95625
95976
|
text-overflow: ellipsis;
|
|
95626
95977
|
white-space: nowrap;
|
|
95627
95978
|
will-change: transform;
|
|
@@ -101369,6 +101720,18 @@ function RU() {
|
|
|
101369
101720
|
overflow-y: auto;
|
|
101370
101721
|
}
|
|
101371
101722
|
|
|
101723
|
+
:host input[part="input"] {
|
|
101724
|
+
min-inline-size: 0;
|
|
101725
|
+
}
|
|
101726
|
+
|
|
101727
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
101728
|
+
text-overflow: ellipsis;
|
|
101729
|
+
}
|
|
101730
|
+
|
|
101731
|
+
:host input[part="input"]:placeholder-shown {
|
|
101732
|
+
text-overflow: ellipsis;
|
|
101733
|
+
}
|
|
101734
|
+
|
|
101372
101735
|
:host [part="label"] {
|
|
101373
101736
|
-webkit-user-select: none;
|
|
101374
101737
|
-moz-user-select: none;
|
|
@@ -101376,6 +101739,7 @@ function RU() {
|
|
|
101376
101739
|
pointer-events: none;
|
|
101377
101740
|
transform-origin: 0 0;
|
|
101378
101741
|
text-align: left;
|
|
101742
|
+
max-inline-size: calc(100% - var(--prompt-box-padding-left) - var(--prompt-box-padding-right));
|
|
101379
101743
|
text-overflow: ellipsis;
|
|
101380
101744
|
white-space: nowrap;
|
|
101381
101745
|
will-change: transform;
|
|
@@ -101578,6 +101942,18 @@ function zU() {
|
|
|
101578
101942
|
overflow-y: auto;
|
|
101579
101943
|
}
|
|
101580
101944
|
|
|
101945
|
+
:host input[part="input"] {
|
|
101946
|
+
min-inline-size: 0;
|
|
101947
|
+
}
|
|
101948
|
+
|
|
101949
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
101950
|
+
text-overflow: ellipsis;
|
|
101951
|
+
}
|
|
101952
|
+
|
|
101953
|
+
:host input[part="input"]:placeholder-shown {
|
|
101954
|
+
text-overflow: ellipsis;
|
|
101955
|
+
}
|
|
101956
|
+
|
|
101581
101957
|
:host [part="label"] {
|
|
101582
101958
|
-webkit-user-select: none;
|
|
101583
101959
|
-moz-user-select: none;
|
|
@@ -101585,6 +101961,7 @@ function zU() {
|
|
|
101585
101961
|
pointer-events: none;
|
|
101586
101962
|
transform-origin: 0 0;
|
|
101587
101963
|
text-align: left;
|
|
101964
|
+
max-inline-size: calc(100% - var(--prompt-box-padding-left) - var(--prompt-box-padding-right));
|
|
101588
101965
|
text-overflow: ellipsis;
|
|
101589
101966
|
white-space: nowrap;
|
|
101590
101967
|
will-change: transform;
|
|
@@ -101854,6 +102231,18 @@ function BU() {
|
|
|
101854
102231
|
overflow-y: auto;
|
|
101855
102232
|
}
|
|
101856
102233
|
|
|
102234
|
+
:host input[part="input"] {
|
|
102235
|
+
min-inline-size: 0;
|
|
102236
|
+
}
|
|
102237
|
+
|
|
102238
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
102239
|
+
text-overflow: ellipsis;
|
|
102240
|
+
}
|
|
102241
|
+
|
|
102242
|
+
:host input[part="input"]:placeholder-shown {
|
|
102243
|
+
text-overflow: ellipsis;
|
|
102244
|
+
}
|
|
102245
|
+
|
|
101857
102246
|
:host [part="label"] {
|
|
101858
102247
|
-webkit-user-select: none;
|
|
101859
102248
|
-moz-user-select: none;
|
|
@@ -101861,6 +102250,7 @@ function BU() {
|
|
|
101861
102250
|
pointer-events: none;
|
|
101862
102251
|
transform-origin: 0 0;
|
|
101863
102252
|
text-align: left;
|
|
102253
|
+
max-inline-size: calc(100% - var(--prompt-box-padding-left) - var(--prompt-box-padding-right));
|
|
101864
102254
|
text-overflow: ellipsis;
|
|
101865
102255
|
white-space: nowrap;
|
|
101866
102256
|
will-change: transform;
|
|
@@ -105326,6 +105716,18 @@ function KW() {
|
|
|
105326
105716
|
transition-property: inherit;
|
|
105327
105717
|
}
|
|
105328
105718
|
|
|
105719
|
+
:host input[part="input"] {
|
|
105720
|
+
min-inline-size: 0;
|
|
105721
|
+
}
|
|
105722
|
+
|
|
105723
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
105724
|
+
text-overflow: ellipsis;
|
|
105725
|
+
}
|
|
105726
|
+
|
|
105727
|
+
:host input[part="input"]:placeholder-shown {
|
|
105728
|
+
text-overflow: ellipsis;
|
|
105729
|
+
}
|
|
105730
|
+
|
|
105329
105731
|
:host [part="label"] {
|
|
105330
105732
|
-webkit-user-select: none;
|
|
105331
105733
|
-moz-user-select: none;
|
|
@@ -105333,6 +105735,7 @@ function KW() {
|
|
|
105333
105735
|
pointer-events: none;
|
|
105334
105736
|
transform-origin: 0 0;
|
|
105335
105737
|
text-align: left;
|
|
105738
|
+
max-inline-size: calc(100% - var(--richtextbox-padding-left) - var(--richtextbox-padding-right));
|
|
105336
105739
|
text-overflow: ellipsis;
|
|
105337
105740
|
white-space: nowrap;
|
|
105338
105741
|
will-change: transform;
|
|
@@ -105575,6 +105978,18 @@ function qW() {
|
|
|
105575
105978
|
transition-property: inherit;
|
|
105576
105979
|
}
|
|
105577
105980
|
|
|
105981
|
+
:host input[part="input"] {
|
|
105982
|
+
min-inline-size: 0;
|
|
105983
|
+
}
|
|
105984
|
+
|
|
105985
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
105986
|
+
text-overflow: ellipsis;
|
|
105987
|
+
}
|
|
105988
|
+
|
|
105989
|
+
:host input[part="input"]:placeholder-shown {
|
|
105990
|
+
text-overflow: ellipsis;
|
|
105991
|
+
}
|
|
105992
|
+
|
|
105578
105993
|
:host [part="label"] {
|
|
105579
105994
|
-webkit-user-select: none;
|
|
105580
105995
|
-moz-user-select: none;
|
|
@@ -105582,6 +105997,7 @@ function qW() {
|
|
|
105582
105997
|
pointer-events: none;
|
|
105583
105998
|
transform-origin: 0 0;
|
|
105584
105999
|
text-align: left;
|
|
106000
|
+
max-inline-size: calc(100% - var(--richtextbox-padding-left) - var(--richtextbox-padding-right));
|
|
105585
106001
|
text-overflow: ellipsis;
|
|
105586
106002
|
white-space: nowrap;
|
|
105587
106003
|
will-change: transform;
|
|
@@ -106056,6 +106472,18 @@ function JW() {
|
|
|
106056
106472
|
transition-property: inherit;
|
|
106057
106473
|
}
|
|
106058
106474
|
|
|
106475
|
+
:host input[part="input"] {
|
|
106476
|
+
min-inline-size: 0;
|
|
106477
|
+
}
|
|
106478
|
+
|
|
106479
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
106480
|
+
text-overflow: ellipsis;
|
|
106481
|
+
}
|
|
106482
|
+
|
|
106483
|
+
:host input[part="input"]:placeholder-shown {
|
|
106484
|
+
text-overflow: ellipsis;
|
|
106485
|
+
}
|
|
106486
|
+
|
|
106059
106487
|
:host [part="label"] {
|
|
106060
106488
|
-webkit-user-select: none;
|
|
106061
106489
|
-moz-user-select: none;
|
|
@@ -106063,6 +106491,7 @@ function JW() {
|
|
|
106063
106491
|
pointer-events: none;
|
|
106064
106492
|
transform-origin: 0 0;
|
|
106065
106493
|
text-align: left;
|
|
106494
|
+
max-inline-size: calc(100% - var(--richtextbox-padding-left) - var(--richtextbox-padding-right));
|
|
106066
106495
|
text-overflow: ellipsis;
|
|
106067
106496
|
white-space: nowrap;
|
|
106068
106497
|
will-change: transform;
|
|
@@ -120173,6 +120602,18 @@ function Lq() {
|
|
|
120173
120602
|
position: relative;
|
|
120174
120603
|
}
|
|
120175
120604
|
|
|
120605
|
+
:host input[part="input"] {
|
|
120606
|
+
min-inline-size: 0;
|
|
120607
|
+
}
|
|
120608
|
+
|
|
120609
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
120610
|
+
text-overflow: ellipsis;
|
|
120611
|
+
}
|
|
120612
|
+
|
|
120613
|
+
:host input[part="input"]:placeholder-shown {
|
|
120614
|
+
text-overflow: ellipsis;
|
|
120615
|
+
}
|
|
120616
|
+
|
|
120176
120617
|
:host [part="label"] {
|
|
120177
120618
|
-webkit-user-select: none;
|
|
120178
120619
|
-moz-user-select: none;
|
|
@@ -120180,6 +120621,7 @@ function Lq() {
|
|
|
120180
120621
|
pointer-events: none;
|
|
120181
120622
|
transform-origin: 0 0;
|
|
120182
120623
|
text-align: left;
|
|
120624
|
+
max-inline-size: calc(100% - var(--timebox-padding-left) - var(--timebox-padding-right));
|
|
120183
120625
|
text-overflow: ellipsis;
|
|
120184
120626
|
white-space: nowrap;
|
|
120185
120627
|
will-change: transform;
|
|
@@ -120432,6 +120874,18 @@ function Rq() {
|
|
|
120432
120874
|
position: relative;
|
|
120433
120875
|
}
|
|
120434
120876
|
|
|
120877
|
+
:host input[part="input"] {
|
|
120878
|
+
min-inline-size: 0;
|
|
120879
|
+
}
|
|
120880
|
+
|
|
120881
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
120882
|
+
text-overflow: ellipsis;
|
|
120883
|
+
}
|
|
120884
|
+
|
|
120885
|
+
:host input[part="input"]:placeholder-shown {
|
|
120886
|
+
text-overflow: ellipsis;
|
|
120887
|
+
}
|
|
120888
|
+
|
|
120435
120889
|
:host [part="label"] {
|
|
120436
120890
|
-webkit-user-select: none;
|
|
120437
120891
|
-moz-user-select: none;
|
|
@@ -120439,6 +120893,7 @@ function Rq() {
|
|
|
120439
120893
|
pointer-events: none;
|
|
120440
120894
|
transform-origin: 0 0;
|
|
120441
120895
|
text-align: left;
|
|
120896
|
+
max-inline-size: calc(100% - var(--timebox-padding-left) - var(--timebox-padding-right));
|
|
120442
120897
|
text-overflow: ellipsis;
|
|
120443
120898
|
white-space: nowrap;
|
|
120444
120899
|
will-change: transform;
|
|
@@ -120891,6 +121346,18 @@ function zq() {
|
|
|
120891
121346
|
position: relative;
|
|
120892
121347
|
}
|
|
120893
121348
|
|
|
121349
|
+
:host input[part="input"] {
|
|
121350
|
+
min-inline-size: 0;
|
|
121351
|
+
}
|
|
121352
|
+
|
|
121353
|
+
:host input[part="input"]:-moz-placeholder-shown {
|
|
121354
|
+
text-overflow: ellipsis;
|
|
121355
|
+
}
|
|
121356
|
+
|
|
121357
|
+
:host input[part="input"]:placeholder-shown {
|
|
121358
|
+
text-overflow: ellipsis;
|
|
121359
|
+
}
|
|
121360
|
+
|
|
120894
121361
|
:host [part="label"] {
|
|
120895
121362
|
-webkit-user-select: none;
|
|
120896
121363
|
-moz-user-select: none;
|
|
@@ -120898,6 +121365,7 @@ function zq() {
|
|
|
120898
121365
|
pointer-events: none;
|
|
120899
121366
|
transform-origin: 0 0;
|
|
120900
121367
|
text-align: left;
|
|
121368
|
+
max-inline-size: calc(100% - var(--timebox-padding-left) - var(--timebox-padding-right));
|
|
120901
121369
|
text-overflow: ellipsis;
|
|
120902
121370
|
white-space: nowrap;
|
|
120903
121371
|
will-change: transform;
|
|
@@ -146056,9 +146524,22 @@ var Xfe = function(e, t, n, r) {
|
|
|
146056
146524
|
else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
|
|
146057
146525
|
return i > 3 && a && Object.defineProperty(t, n, a), a;
|
|
146058
146526
|
}, c1 = class extends CU {
|
|
146527
|
+
_inheritance = wx(this, { context: Q$ });
|
|
146059
146528
|
static get is() {
|
|
146060
146529
|
return "mosaik-chat-prompt-box";
|
|
146061
146530
|
}
|
|
146531
|
+
get variant() {
|
|
146532
|
+
return this._inheritance.get("variant", super.variant);
|
|
146533
|
+
}
|
|
146534
|
+
set variant(e) {
|
|
146535
|
+
this._inheritance.markExplicit("variant"), super.variant = e;
|
|
146536
|
+
}
|
|
146537
|
+
get appearance() {
|
|
146538
|
+
return this._inheritance.get("appearance", super.appearance);
|
|
146539
|
+
}
|
|
146540
|
+
set appearance(e) {
|
|
146541
|
+
this._inheritance.markExplicit("appearance"), super.appearance = e;
|
|
146542
|
+
}
|
|
146062
146543
|
};
|
|
146063
146544
|
c1 = Xfe([L({
|
|
146064
146545
|
selector: "mosaik-chat-prompt-box",
|
|
@@ -146615,7 +147096,7 @@ var d1 = function(e, t, n, r) {
|
|
|
146615
147096
|
this.releaseMessageResizeObservations(), super.disconnectedCallback();
|
|
146616
147097
|
}
|
|
146617
147098
|
onSlotChanges(e) {
|
|
146618
|
-
super.onSlotChanges(e), e === "input" && (this._promptBoxElement = this.getSlotAssignmentsOf("input", c1).at(0), this._promptBoxElement && (this._promptBoxElement.dir = this.dir, this._promptBoxElement.
|
|
147099
|
+
super.onSlotChanges(e), e === "input" && (this._promptBoxElement = this.getSlotAssignmentsOf("input", c1).at(0), this._promptBoxElement && (this._promptBoxElement.dir = this.dir, this._promptBoxElement.placeholder = this.intl.inputPlaceholder)), (e === void 0 || e === "message") && (this.syncObservedMessageElements(), this.hasUpdated && this.begin === W$.End && this.scrollToEnd && this._isScrollEndAnchored && this.scrollMessagesToEnd(!0));
|
|
146619
147100
|
}
|
|
146620
147101
|
handleMessagesScroll(e) {
|
|
146621
147102
|
Number.isFinite(e) && (this._scrollEndDistance = Math.max(0, e), this._isScrollEndAnchored = this._scrollEndDistance <= this.scrollToEndThreshold);
|
|
@@ -148175,9 +148656,22 @@ var fpe = function(e, t, n, r) {
|
|
|
148175
148656
|
else for (var s = e.length - 1; s >= 0; s--) (o = e[s]) && (a = (i < 3 ? o(a) : i > 3 ? o(t, n, a) : o(t, n)) || a);
|
|
148176
148657
|
return i > 3 && a && Object.defineProperty(t, n, a), a;
|
|
148177
148658
|
}, C1 = class extends FU {
|
|
148659
|
+
_inheritance = wx(this, { context: Q$ });
|
|
148178
148660
|
static get is() {
|
|
148179
148661
|
return "mosaik-chat-prompt-box-attachment-list";
|
|
148180
148662
|
}
|
|
148663
|
+
get variant() {
|
|
148664
|
+
return this._inheritance.get("variant", super.variant);
|
|
148665
|
+
}
|
|
148666
|
+
set variant(e) {
|
|
148667
|
+
this._inheritance.markExplicit("variant"), super.variant = e;
|
|
148668
|
+
}
|
|
148669
|
+
get appearance() {
|
|
148670
|
+
return this._inheritance.get("appearance", super.appearance);
|
|
148671
|
+
}
|
|
148672
|
+
set appearance(e) {
|
|
148673
|
+
this._inheritance.markExplicit("appearance"), super.appearance = e;
|
|
148674
|
+
}
|
|
148181
148675
|
};
|
|
148182
148676
|
C1 = fpe([L({
|
|
148183
148677
|
selector: "mosaik-chat-prompt-box-attachment-list",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/mosaik-elements-svelte",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.71",
|
|
4
4
|
"description": "Mosaik elements for Svelte.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"url": "git+ssh://git@github.com/RueDeRennes/mosaik.git"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@breadstone/mosaik-elements": "0.1.
|
|
15
|
-
"@breadstone/mosaik-elements-foundation": "0.1.
|
|
14
|
+
"@breadstone/mosaik-elements": "0.1.71",
|
|
15
|
+
"@breadstone/mosaik-elements-foundation": "0.1.71",
|
|
16
16
|
"tslib": "2.8.1"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|