@skedulo/breeze-ui 1.30.0 → 1.31.1
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 +245 -20
- package/dist/lib/cjs/breeze-ui.js +345 -214
- package/dist/lib/es/breeze-ui.js +5925 -5685
- package/dist/tsconfig.tsbuildinfo +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/dist/types/components/index.d.ts +1 -0
- package/dist/types/components/index.d.ts.map +1 -1
- package/dist/types/components/loader.d.ts +59 -0
- package/dist/types/components/loader.d.ts.map +1 -0
- package/package.json +1 -1
|
@@ -2739,6 +2739,14 @@
|
|
|
2739
2739
|
"package": "./skeleton"
|
|
2740
2740
|
}
|
|
2741
2741
|
},
|
|
2742
|
+
{
|
|
2743
|
+
"kind": "js",
|
|
2744
|
+
"name": "*",
|
|
2745
|
+
"declaration": {
|
|
2746
|
+
"name": "*",
|
|
2747
|
+
"package": "./loader"
|
|
2748
|
+
}
|
|
2749
|
+
},
|
|
2742
2750
|
{
|
|
2743
2751
|
"kind": "js",
|
|
2744
2752
|
"name": "*",
|
|
@@ -15038,6 +15046,76 @@
|
|
|
15038
15046
|
"module": "src/components/form-elements/input-select-base.ts"
|
|
15039
15047
|
}
|
|
15040
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
|
+
},
|
|
15041
15119
|
{
|
|
15042
15120
|
"kind": "method",
|
|
15043
15121
|
"name": "getItems",
|
|
@@ -15476,16 +15554,6 @@
|
|
|
15476
15554
|
"module": "src/components/form-elements/input-select-base.ts"
|
|
15477
15555
|
}
|
|
15478
15556
|
},
|
|
15479
|
-
{
|
|
15480
|
-
"kind": "method",
|
|
15481
|
-
"name": "handleOpenDropdown",
|
|
15482
|
-
"privacy": "protected",
|
|
15483
|
-
"description": "Side effect after dropdown opens",
|
|
15484
|
-
"inheritedFrom": {
|
|
15485
|
-
"name": "InputSelectBase",
|
|
15486
|
-
"module": "src/components/form-elements/input-select-base.ts"
|
|
15487
|
-
}
|
|
15488
|
-
},
|
|
15489
15557
|
{
|
|
15490
15558
|
"kind": "method",
|
|
15491
15559
|
"name": "handleItemSelect",
|
|
@@ -17661,6 +17729,115 @@
|
|
|
17661
17729
|
}
|
|
17662
17730
|
]
|
|
17663
17731
|
},
|
|
17732
|
+
{
|
|
17733
|
+
"kind": "javascript-module",
|
|
17734
|
+
"path": "src/components/loader.ts",
|
|
17735
|
+
"declarations": [
|
|
17736
|
+
{
|
|
17737
|
+
"kind": "variable",
|
|
17738
|
+
"name": "LOADER"
|
|
17739
|
+
},
|
|
17740
|
+
{
|
|
17741
|
+
"kind": "class",
|
|
17742
|
+
"description": "Loader component for indeterminate loading states.",
|
|
17743
|
+
"name": "Loader",
|
|
17744
|
+
"members": [
|
|
17745
|
+
{
|
|
17746
|
+
"kind": "field",
|
|
17747
|
+
"name": "size",
|
|
17748
|
+
"type": {
|
|
17749
|
+
"text": "Size"
|
|
17750
|
+
},
|
|
17751
|
+
"default": "'md'",
|
|
17752
|
+
"description": "Sets the loader size",
|
|
17753
|
+
"attribute": "size",
|
|
17754
|
+
"reflects": true
|
|
17755
|
+
},
|
|
17756
|
+
{
|
|
17757
|
+
"kind": "field",
|
|
17758
|
+
"name": "variant",
|
|
17759
|
+
"type": {
|
|
17760
|
+
"text": "Variant"
|
|
17761
|
+
},
|
|
17762
|
+
"default": "'primary'",
|
|
17763
|
+
"description": "Sets the loader color variant",
|
|
17764
|
+
"attribute": "variant",
|
|
17765
|
+
"reflects": true
|
|
17766
|
+
},
|
|
17767
|
+
{
|
|
17768
|
+
"kind": "field",
|
|
17769
|
+
"name": "ariaLabel",
|
|
17770
|
+
"type": {
|
|
17771
|
+
"text": "string"
|
|
17772
|
+
},
|
|
17773
|
+
"default": "'Loading'",
|
|
17774
|
+
"description": "Sets the accessible label for screen readers",
|
|
17775
|
+
"attribute": "aria-label"
|
|
17776
|
+
}
|
|
17777
|
+
],
|
|
17778
|
+
"attributes": [
|
|
17779
|
+
{
|
|
17780
|
+
"name": "size",
|
|
17781
|
+
"type": {
|
|
17782
|
+
"text": "Size"
|
|
17783
|
+
},
|
|
17784
|
+
"default": "'md'",
|
|
17785
|
+
"description": "Sets the loader size",
|
|
17786
|
+
"fieldName": "size"
|
|
17787
|
+
},
|
|
17788
|
+
{
|
|
17789
|
+
"name": "variant",
|
|
17790
|
+
"type": {
|
|
17791
|
+
"text": "Variant"
|
|
17792
|
+
},
|
|
17793
|
+
"default": "'primary'",
|
|
17794
|
+
"description": "Sets the loader color variant",
|
|
17795
|
+
"fieldName": "variant"
|
|
17796
|
+
},
|
|
17797
|
+
{
|
|
17798
|
+
"name": "aria-label",
|
|
17799
|
+
"type": {
|
|
17800
|
+
"text": "string"
|
|
17801
|
+
},
|
|
17802
|
+
"default": "'Loading'",
|
|
17803
|
+
"description": "Sets the accessible label for screen readers",
|
|
17804
|
+
"fieldName": "ariaLabel"
|
|
17805
|
+
}
|
|
17806
|
+
],
|
|
17807
|
+
"superclass": {
|
|
17808
|
+
"name": "LitElement",
|
|
17809
|
+
"package": "lit"
|
|
17810
|
+
},
|
|
17811
|
+
"tagName": "brz-loader",
|
|
17812
|
+
"customElement": true
|
|
17813
|
+
}
|
|
17814
|
+
],
|
|
17815
|
+
"exports": [
|
|
17816
|
+
{
|
|
17817
|
+
"kind": "js",
|
|
17818
|
+
"name": "LOADER",
|
|
17819
|
+
"declaration": {
|
|
17820
|
+
"name": "LOADER",
|
|
17821
|
+
"module": "src/components/loader.ts"
|
|
17822
|
+
}
|
|
17823
|
+
},
|
|
17824
|
+
{
|
|
17825
|
+
"kind": "js",
|
|
17826
|
+
"name": "Loader",
|
|
17827
|
+
"declaration": {
|
|
17828
|
+
"name": "Loader",
|
|
17829
|
+
"module": "src/components/loader.ts"
|
|
17830
|
+
}
|
|
17831
|
+
},
|
|
17832
|
+
{
|
|
17833
|
+
"kind": "custom-element-definition",
|
|
17834
|
+
"declaration": {
|
|
17835
|
+
"name": "Loader",
|
|
17836
|
+
"module": "src/components/loader.ts"
|
|
17837
|
+
}
|
|
17838
|
+
}
|
|
17839
|
+
]
|
|
17840
|
+
},
|
|
17664
17841
|
{
|
|
17665
17842
|
"kind": "javascript-module",
|
|
17666
17843
|
"path": "src/components/loading.ts",
|
|
@@ -30015,6 +30192,64 @@
|
|
|
30015
30192
|
"module": "src/components/form-elements/input-select-base.ts"
|
|
30016
30193
|
}
|
|
30017
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
|
+
},
|
|
30018
30253
|
{
|
|
30019
30254
|
"kind": "method",
|
|
30020
30255
|
"name": "getItems",
|
|
@@ -30445,16 +30680,6 @@
|
|
|
30445
30680
|
"module": "src/components/form-elements/input-select-base.ts"
|
|
30446
30681
|
}
|
|
30447
30682
|
},
|
|
30448
|
-
{
|
|
30449
|
-
"kind": "method",
|
|
30450
|
-
"name": "handleOpenDropdown",
|
|
30451
|
-
"privacy": "protected",
|
|
30452
|
-
"description": "Side effect after dropdown opens",
|
|
30453
|
-
"inheritedFrom": {
|
|
30454
|
-
"name": "InputSelectBase",
|
|
30455
|
-
"module": "src/components/form-elements/input-select-base.ts"
|
|
30456
|
-
}
|
|
30457
|
-
},
|
|
30458
30683
|
{
|
|
30459
30684
|
"kind": "method",
|
|
30460
30685
|
"name": "handleItemSelect",
|