@skedulo/breeze-ui 1.31.0 → 1.31.2
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/custom-elements.json +128 -20
- package/dist/lib/cjs/breeze-ui.js +480 -576
- package/dist/lib/es/breeze-ui.js +14776 -14324
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/components/date-time/base-date-time-utils.d.ts.map +1 -1
- package/dist/types/components/form-elements/input-time.d.ts +17 -0
- package/dist/types/components/form-elements/input-time.d.ts.map +1 -1
- package/package.json +2 -2
|
@@ -15046,6 +15046,76 @@
|
|
|
15046
15046
|
"module": "src/components/form-elements/input-select-base.ts"
|
|
15047
15047
|
}
|
|
15048
15048
|
},
|
|
15049
|
+
{
|
|
15050
|
+
"kind": "method",
|
|
15051
|
+
"name": "handleOpenDropdown",
|
|
15052
|
+
"privacy": "protected",
|
|
15053
|
+
"description": "Scrolls to the currently selected option when the dropdown opens.\nThis ensures the selected time option is automatically visible when the dialog opens.",
|
|
15054
|
+
"inheritedFrom": {
|
|
15055
|
+
"name": "InputSelectBase",
|
|
15056
|
+
"module": "src/components/form-elements/input-select-base.ts"
|
|
15057
|
+
}
|
|
15058
|
+
},
|
|
15059
|
+
{
|
|
15060
|
+
"kind": "method",
|
|
15061
|
+
"name": "scrollToSelectedOption",
|
|
15062
|
+
"privacy": "private",
|
|
15063
|
+
"parameters": [
|
|
15064
|
+
{
|
|
15065
|
+
"name": "menu",
|
|
15066
|
+
"type": {
|
|
15067
|
+
"text": "HTMLElement"
|
|
15068
|
+
}
|
|
15069
|
+
}
|
|
15070
|
+
],
|
|
15071
|
+
"description": "Scrolls to the selected option in the dropdown menu",
|
|
15072
|
+
"inheritedFrom": {
|
|
15073
|
+
"name": "InputTime",
|
|
15074
|
+
"module": "src/components/form-elements/input-time.ts"
|
|
15075
|
+
}
|
|
15076
|
+
},
|
|
15077
|
+
{
|
|
15078
|
+
"kind": "method",
|
|
15079
|
+
"name": "scrollVirtualListToIndex",
|
|
15080
|
+
"privacy": "private",
|
|
15081
|
+
"parameters": [
|
|
15082
|
+
{
|
|
15083
|
+
"name": "virtualList",
|
|
15084
|
+
"type": {
|
|
15085
|
+
"text": "VirtualList<InputSelectOptionInternal>"
|
|
15086
|
+
}
|
|
15087
|
+
},
|
|
15088
|
+
{
|
|
15089
|
+
"name": "selectedIndex",
|
|
15090
|
+
"type": {
|
|
15091
|
+
"text": "number"
|
|
15092
|
+
}
|
|
15093
|
+
}
|
|
15094
|
+
],
|
|
15095
|
+
"description": "Scrolls a virtual list to the specified index instantly",
|
|
15096
|
+
"inheritedFrom": {
|
|
15097
|
+
"name": "InputTime",
|
|
15098
|
+
"module": "src/components/form-elements/input-time.ts"
|
|
15099
|
+
}
|
|
15100
|
+
},
|
|
15101
|
+
{
|
|
15102
|
+
"kind": "method",
|
|
15103
|
+
"name": "scrollToMenuItem",
|
|
15104
|
+
"privacy": "private",
|
|
15105
|
+
"parameters": [
|
|
15106
|
+
{
|
|
15107
|
+
"name": "menu",
|
|
15108
|
+
"type": {
|
|
15109
|
+
"text": "HTMLElement"
|
|
15110
|
+
}
|
|
15111
|
+
}
|
|
15112
|
+
],
|
|
15113
|
+
"description": "Scrolls to the selected menu item in a non-virtualized list instantly",
|
|
15114
|
+
"inheritedFrom": {
|
|
15115
|
+
"name": "InputTime",
|
|
15116
|
+
"module": "src/components/form-elements/input-time.ts"
|
|
15117
|
+
}
|
|
15118
|
+
},
|
|
15049
15119
|
{
|
|
15050
15120
|
"kind": "method",
|
|
15051
15121
|
"name": "getItems",
|
|
@@ -15484,16 +15554,6 @@
|
|
|
15484
15554
|
"module": "src/components/form-elements/input-select-base.ts"
|
|
15485
15555
|
}
|
|
15486
15556
|
},
|
|
15487
|
-
{
|
|
15488
|
-
"kind": "method",
|
|
15489
|
-
"name": "handleOpenDropdown",
|
|
15490
|
-
"privacy": "protected",
|
|
15491
|
-
"description": "Side effect after dropdown opens",
|
|
15492
|
-
"inheritedFrom": {
|
|
15493
|
-
"name": "InputSelectBase",
|
|
15494
|
-
"module": "src/components/form-elements/input-select-base.ts"
|
|
15495
|
-
}
|
|
15496
|
-
},
|
|
15497
15557
|
{
|
|
15498
15558
|
"kind": "method",
|
|
15499
15559
|
"name": "handleItemSelect",
|
|
@@ -30132,6 +30192,64 @@
|
|
|
30132
30192
|
"module": "src/components/form-elements/input-select-base.ts"
|
|
30133
30193
|
}
|
|
30134
30194
|
},
|
|
30195
|
+
{
|
|
30196
|
+
"kind": "method",
|
|
30197
|
+
"name": "handleOpenDropdown",
|
|
30198
|
+
"privacy": "protected",
|
|
30199
|
+
"description": "Scrolls to the currently selected option when the dropdown opens.\nThis ensures the selected time option is automatically visible when the dialog opens.",
|
|
30200
|
+
"inheritedFrom": {
|
|
30201
|
+
"name": "InputSelectBase",
|
|
30202
|
+
"module": "src/components/form-elements/input-select-base.ts"
|
|
30203
|
+
}
|
|
30204
|
+
},
|
|
30205
|
+
{
|
|
30206
|
+
"kind": "method",
|
|
30207
|
+
"name": "scrollToSelectedOption",
|
|
30208
|
+
"privacy": "private",
|
|
30209
|
+
"parameters": [
|
|
30210
|
+
{
|
|
30211
|
+
"name": "menu",
|
|
30212
|
+
"type": {
|
|
30213
|
+
"text": "HTMLElement"
|
|
30214
|
+
}
|
|
30215
|
+
}
|
|
30216
|
+
],
|
|
30217
|
+
"description": "Scrolls to the selected option in the dropdown menu"
|
|
30218
|
+
},
|
|
30219
|
+
{
|
|
30220
|
+
"kind": "method",
|
|
30221
|
+
"name": "scrollVirtualListToIndex",
|
|
30222
|
+
"privacy": "private",
|
|
30223
|
+
"parameters": [
|
|
30224
|
+
{
|
|
30225
|
+
"name": "virtualList",
|
|
30226
|
+
"type": {
|
|
30227
|
+
"text": "VirtualList<InputSelectOptionInternal>"
|
|
30228
|
+
}
|
|
30229
|
+
},
|
|
30230
|
+
{
|
|
30231
|
+
"name": "selectedIndex",
|
|
30232
|
+
"type": {
|
|
30233
|
+
"text": "number"
|
|
30234
|
+
}
|
|
30235
|
+
}
|
|
30236
|
+
],
|
|
30237
|
+
"description": "Scrolls a virtual list to the specified index instantly"
|
|
30238
|
+
},
|
|
30239
|
+
{
|
|
30240
|
+
"kind": "method",
|
|
30241
|
+
"name": "scrollToMenuItem",
|
|
30242
|
+
"privacy": "private",
|
|
30243
|
+
"parameters": [
|
|
30244
|
+
{
|
|
30245
|
+
"name": "menu",
|
|
30246
|
+
"type": {
|
|
30247
|
+
"text": "HTMLElement"
|
|
30248
|
+
}
|
|
30249
|
+
}
|
|
30250
|
+
],
|
|
30251
|
+
"description": "Scrolls to the selected menu item in a non-virtualized list instantly"
|
|
30252
|
+
},
|
|
30135
30253
|
{
|
|
30136
30254
|
"kind": "method",
|
|
30137
30255
|
"name": "getItems",
|
|
@@ -30562,16 +30680,6 @@
|
|
|
30562
30680
|
"module": "src/components/form-elements/input-select-base.ts"
|
|
30563
30681
|
}
|
|
30564
30682
|
},
|
|
30565
|
-
{
|
|
30566
|
-
"kind": "method",
|
|
30567
|
-
"name": "handleOpenDropdown",
|
|
30568
|
-
"privacy": "protected",
|
|
30569
|
-
"description": "Side effect after dropdown opens",
|
|
30570
|
-
"inheritedFrom": {
|
|
30571
|
-
"name": "InputSelectBase",
|
|
30572
|
-
"module": "src/components/form-elements/input-select-base.ts"
|
|
30573
|
-
}
|
|
30574
|
-
},
|
|
30575
30683
|
{
|
|
30576
30684
|
"kind": "method",
|
|
30577
30685
|
"name": "handleItemSelect",
|