@bitrix24/b24ui-nuxt 0.2.2 → 0.2.3

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.
Files changed (38) hide show
  1. package/.nuxt/b24ui/button.ts +9 -2
  2. package/.nuxt/b24ui/checkbox.ts +1 -1
  3. package/.nuxt/b24ui/index.ts +1 -0
  4. package/.nuxt/b24ui/input-menu.ts +1 -1
  5. package/.nuxt/b24ui/modal.ts +28 -0
  6. package/.nuxt/b24ui/radio-group.ts +1 -1
  7. package/.nuxt/b24ui/range.ts +1 -1
  8. package/.nuxt/b24ui/select-menu.ts +1 -1
  9. package/.nuxt/b24ui/select.ts +1 -1
  10. package/.nuxt/b24ui/switch.ts +1 -1
  11. package/.nuxt/b24ui/tabs.ts +2 -2
  12. package/.nuxt/b24ui/toaster.ts +4 -4
  13. package/dist/meta.cjs +1357 -13
  14. package/dist/meta.d.cts +1357 -13
  15. package/dist/meta.d.mts +1357 -13
  16. package/dist/meta.d.ts +1357 -13
  17. package/dist/meta.mjs +1357 -13
  18. package/dist/module.cjs +1 -1
  19. package/dist/module.json +1 -1
  20. package/dist/module.mjs +1 -1
  21. package/dist/runtime/components/App.vue +2 -2
  22. package/dist/runtime/components/Modal.vue +179 -0
  23. package/dist/runtime/components/ModalDialogClose.vue +17 -0
  24. package/dist/runtime/components/ModalProvider.vue +12 -0
  25. package/dist/runtime/composables/useComponentIcons.d.ts +2 -2
  26. package/dist/runtime/composables/useModal.d.ts +17 -0
  27. package/dist/runtime/composables/useModal.js +46 -0
  28. package/dist/runtime/plugins/modal.d.ts +2 -0
  29. package/dist/runtime/plugins/modal.js +10 -0
  30. package/dist/runtime/types/index.d.ts +2 -0
  31. package/dist/runtime/types/index.js +2 -0
  32. package/dist/shared/{b24ui-nuxt.DgnM0VWe.cjs → b24ui-nuxt.Ce3hzs_q.cjs} +79 -26
  33. package/dist/shared/{b24ui-nuxt.CYvh5VlN.mjs → b24ui-nuxt.DY8ePXC7.mjs} +79 -26
  34. package/dist/unplugin.cjs +1 -1
  35. package/dist/unplugin.mjs +1 -1
  36. package/dist/vite.cjs +1 -1
  37. package/dist/vite.mjs +1 -1
  38. package/package.json +6 -4
package/dist/meta.d.mts CHANGED
@@ -20503,6 +20503,1350 @@ var B24UIMeta = {
20503
20503
  "exposed": []
20504
20504
  }
20505
20505
  },
20506
+ "B24Modal": {
20507
+ "mode": "all",
20508
+ "prefetch": false,
20509
+ "preload": false,
20510
+ "pascalName": "B24Modal",
20511
+ "kebabName": "b24-modal",
20512
+ "chunkName": "components/b24-modal",
20513
+ "priority": 0,
20514
+ "_scanned": true,
20515
+ "meta": {
20516
+ "type": 0,
20517
+ "props": [
20518
+ {
20519
+ "name": "title",
20520
+ "global": false,
20521
+ "description": "",
20522
+ "tags": [],
20523
+ "required": false,
20524
+ "type": "string | undefined",
20525
+ "schema": {
20526
+ "kind": "enum",
20527
+ "type": "string | undefined",
20528
+ "schema": {
20529
+ "0": "undefined",
20530
+ "1": "string"
20531
+ }
20532
+ }
20533
+ },
20534
+ {
20535
+ "name": "description",
20536
+ "global": false,
20537
+ "description": "",
20538
+ "tags": [],
20539
+ "required": false,
20540
+ "type": "string | undefined",
20541
+ "schema": {
20542
+ "kind": "enum",
20543
+ "type": "string | undefined",
20544
+ "schema": {
20545
+ "0": "undefined",
20546
+ "1": "string"
20547
+ }
20548
+ }
20549
+ },
20550
+ {
20551
+ "name": "content",
20552
+ "global": false,
20553
+ "description": "The content of the modal.",
20554
+ "tags": [],
20555
+ "required": false,
20556
+ "type": "Omit<DialogContentProps, \"as\" | \"asChild\" | \"forceMount\"> | undefined",
20557
+ "schema": {
20558
+ "kind": "enum",
20559
+ "type": "Omit<DialogContentProps, \"as\" | \"asChild\" | \"forceMount\"> | undefined",
20560
+ "schema": {
20561
+ "0": "undefined",
20562
+ "1": "Omit<DialogContentProps, \"as\" | \"asChild\" | \"forceMount\">"
20563
+ }
20564
+ }
20565
+ },
20566
+ {
20567
+ "name": "overlay",
20568
+ "global": false,
20569
+ "description": "Render an overlay behind the modal.",
20570
+ "tags": [
20571
+ {
20572
+ "name": "defaultValue",
20573
+ "text": "true"
20574
+ }
20575
+ ],
20576
+ "required": false,
20577
+ "type": "boolean | undefined",
20578
+ "schema": {
20579
+ "kind": "enum",
20580
+ "type": "boolean | undefined",
20581
+ "schema": {
20582
+ "0": "undefined",
20583
+ "1": "false",
20584
+ "2": "true"
20585
+ }
20586
+ },
20587
+ "default": "true"
20588
+ },
20589
+ {
20590
+ "name": "transition",
20591
+ "global": false,
20592
+ "description": "Animate the modal when opening or closing.",
20593
+ "tags": [
20594
+ {
20595
+ "name": "defaultValue",
20596
+ "text": "true"
20597
+ }
20598
+ ],
20599
+ "required": false,
20600
+ "type": "boolean | undefined",
20601
+ "schema": {
20602
+ "kind": "enum",
20603
+ "type": "boolean | undefined",
20604
+ "schema": {
20605
+ "0": "undefined",
20606
+ "1": "false",
20607
+ "2": "true"
20608
+ }
20609
+ },
20610
+ "default": "true"
20611
+ },
20612
+ {
20613
+ "name": "fullscreen",
20614
+ "global": false,
20615
+ "description": "When `true`, the modal will take up the full screen.",
20616
+ "tags": [
20617
+ {
20618
+ "name": "defaultValue",
20619
+ "text": "false"
20620
+ }
20621
+ ],
20622
+ "required": false,
20623
+ "type": "boolean | undefined",
20624
+ "schema": {
20625
+ "kind": "enum",
20626
+ "type": "boolean | undefined",
20627
+ "schema": {
20628
+ "0": "undefined",
20629
+ "1": "false",
20630
+ "2": "true"
20631
+ }
20632
+ }
20633
+ },
20634
+ {
20635
+ "name": "portal",
20636
+ "global": false,
20637
+ "description": "Render the modal in a portal.",
20638
+ "tags": [
20639
+ {
20640
+ "name": "defaultValue",
20641
+ "text": "true"
20642
+ }
20643
+ ],
20644
+ "required": false,
20645
+ "type": "boolean | undefined",
20646
+ "schema": {
20647
+ "kind": "enum",
20648
+ "type": "boolean | undefined",
20649
+ "schema": {
20650
+ "0": "undefined",
20651
+ "1": "false",
20652
+ "2": "true"
20653
+ }
20654
+ },
20655
+ "default": "true"
20656
+ },
20657
+ {
20658
+ "name": "close",
20659
+ "global": false,
20660
+ "description": "Display a close button to dismiss the modal.\n`{ size: 'xs', color: 'link' }`{lang=\"ts-type\"}",
20661
+ "tags": [
20662
+ {
20663
+ "name": "defaultValue",
20664
+ "text": "true"
20665
+ }
20666
+ ],
20667
+ "required": false,
20668
+ "type": "boolean | ButtonProps | undefined",
20669
+ "schema": {
20670
+ "kind": "enum",
20671
+ "type": "boolean | ButtonProps | undefined",
20672
+ "schema": {
20673
+ "0": "undefined",
20674
+ "1": "false",
20675
+ "2": "true",
20676
+ "3": {
20677
+ "kind": "object",
20678
+ "type": "ButtonProps",
20679
+ "schema": {
20680
+ "label": {
20681
+ "name": "label",
20682
+ "global": false,
20683
+ "description": "",
20684
+ "tags": [],
20685
+ "required": false,
20686
+ "type": "string | undefined",
20687
+ "schema": {
20688
+ "kind": "enum",
20689
+ "type": "string | undefined",
20690
+ "schema": {
20691
+ "0": "undefined",
20692
+ "1": "string"
20693
+ }
20694
+ }
20695
+ },
20696
+ "color": {
20697
+ "name": "color",
20698
+ "global": false,
20699
+ "description": "",
20700
+ "tags": [],
20701
+ "required": false,
20702
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
20703
+ "schema": {
20704
+ "kind": "enum",
20705
+ "type": "\"default\" | \"danger\" | \"success\" | \"warning\" | \"primary\" | \"secondary\" | \"collab\" | \"ai\" | \"link\" | undefined",
20706
+ "schema": {
20707
+ "0": "undefined",
20708
+ "1": "\"default\"",
20709
+ "2": "\"danger\"",
20710
+ "3": "\"success\"",
20711
+ "4": "\"warning\"",
20712
+ "5": "\"primary\"",
20713
+ "6": "\"secondary\"",
20714
+ "7": "\"collab\"",
20715
+ "8": "\"ai\"",
20716
+ "9": "\"link\""
20717
+ }
20718
+ }
20719
+ },
20720
+ "depth": {
20721
+ "name": "depth",
20722
+ "global": false,
20723
+ "description": "",
20724
+ "tags": [],
20725
+ "required": false,
20726
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
20727
+ "schema": {
20728
+ "kind": "enum",
20729
+ "type": "\"light\" | \"normal\" | \"dark\" | undefined",
20730
+ "schema": {
20731
+ "0": "undefined",
20732
+ "1": "\"light\"",
20733
+ "2": "\"normal\"",
20734
+ "3": "\"dark\""
20735
+ }
20736
+ }
20737
+ },
20738
+ "size": {
20739
+ "name": "size",
20740
+ "global": false,
20741
+ "description": "",
20742
+ "tags": [],
20743
+ "required": false,
20744
+ "type": "\"lg\" | \"md\" | \"xs\" | \"sm\" | undefined",
20745
+ "schema": {
20746
+ "kind": "enum",
20747
+ "type": "\"lg\" | \"md\" | \"xs\" | \"sm\" | undefined",
20748
+ "schema": {
20749
+ "0": "undefined",
20750
+ "1": "\"lg\"",
20751
+ "2": "\"md\"",
20752
+ "3": "\"xs\"",
20753
+ "4": "\"sm\""
20754
+ }
20755
+ }
20756
+ },
20757
+ "rounded": {
20758
+ "name": "rounded",
20759
+ "global": false,
20760
+ "description": "Rounds the corners of the button.",
20761
+ "tags": [],
20762
+ "required": false,
20763
+ "type": "boolean | undefined",
20764
+ "schema": {
20765
+ "kind": "enum",
20766
+ "type": "boolean | undefined",
20767
+ "schema": {
20768
+ "0": "undefined",
20769
+ "1": "false",
20770
+ "2": "true"
20771
+ }
20772
+ }
20773
+ },
20774
+ "block": {
20775
+ "name": "block",
20776
+ "global": false,
20777
+ "description": "Render the button full width.",
20778
+ "tags": [],
20779
+ "required": false,
20780
+ "type": "boolean | undefined",
20781
+ "schema": "boolean | undefined"
20782
+ },
20783
+ "loadingAuto": {
20784
+ "name": "loadingAuto",
20785
+ "global": false,
20786
+ "description": "Set loading state automatically based on the `@click` promise state",
20787
+ "tags": [],
20788
+ "required": false,
20789
+ "type": "boolean | undefined",
20790
+ "schema": "boolean | undefined"
20791
+ },
20792
+ "normalCase": {
20793
+ "name": "normalCase",
20794
+ "global": false,
20795
+ "description": "Disable uppercase label",
20796
+ "tags": [],
20797
+ "required": false,
20798
+ "type": "boolean | undefined",
20799
+ "schema": "boolean | undefined"
20800
+ },
20801
+ "useWait": {
20802
+ "name": "useWait",
20803
+ "global": false,
20804
+ "description": "Shows `Wait` icon in loading mode",
20805
+ "tags": [],
20806
+ "required": false,
20807
+ "type": "boolean | undefined",
20808
+ "schema": "boolean | undefined"
20809
+ },
20810
+ "useClock": {
20811
+ "name": "useClock",
20812
+ "global": false,
20813
+ "description": "Shows `Clock` icon in loading mode",
20814
+ "tags": [],
20815
+ "required": false,
20816
+ "type": "boolean | undefined",
20817
+ "schema": "boolean | undefined"
20818
+ },
20819
+ "useDropdown": {
20820
+ "name": "useDropdown",
20821
+ "global": false,
20822
+ "description": "Shows `ChevronDownIcon` icon on the right side",
20823
+ "tags": [],
20824
+ "required": false,
20825
+ "type": "boolean | undefined",
20826
+ "schema": "boolean | undefined"
20827
+ },
20828
+ "onClick": {
20829
+ "name": "onClick",
20830
+ "global": false,
20831
+ "description": "",
20832
+ "tags": [],
20833
+ "required": false,
20834
+ "type": "((event: MouseEvent) => void | Promise<void>) | ((event: MouseEvent) => void | Promise<void>)[] | undefined",
20835
+ "schema": {
20836
+ "kind": "enum",
20837
+ "type": "((event: MouseEvent) => void | Promise<void>) | ((event: MouseEvent) => void | Promise<void>)[] | undefined",
20838
+ "schema": {
20839
+ "0": "undefined",
20840
+ "1": {
20841
+ "kind": "event",
20842
+ "type": "(event: MouseEvent): void | Promise<void>",
20843
+ "schema": []
20844
+ },
20845
+ "2": {
20846
+ "kind": "array",
20847
+ "type": "((event: MouseEvent) => void | Promise<void>)[]",
20848
+ "schema": [
20849
+ {
20850
+ "kind": "event",
20851
+ "type": "(event: MouseEvent): void | Promise<void>",
20852
+ "schema": []
20853
+ }
20854
+ ]
20855
+ }
20856
+ }
20857
+ }
20858
+ },
20859
+ "class": {
20860
+ "name": "class",
20861
+ "global": false,
20862
+ "description": "",
20863
+ "tags": [],
20864
+ "required": false,
20865
+ "type": "any",
20866
+ "schema": "any"
20867
+ },
20868
+ "b24ui": {
20869
+ "name": "b24ui",
20870
+ "global": false,
20871
+ "description": "",
20872
+ "tags": [],
20873
+ "required": false,
20874
+ "type": "PartialString<{ base: string[]; baseLine: string; label: string; leadingIcon: string; leadingAvatar: string; leadingAvatarSize: string; trailingIcon: string; }> | undefined",
20875
+ "schema": {
20876
+ "kind": "enum",
20877
+ "type": "PartialString<{ base: string[]; baseLine: string; label: string; leadingIcon: string; leadingAvatar: string; leadingAvatarSize: string; trailingIcon: string; }> | undefined",
20878
+ "schema": {
20879
+ "0": "undefined",
20880
+ "1": "PartialString<{ base: string[]; baseLine: string; label: string; leadingIcon: string; leadingAvatar: string; leadingAvatarSize: string; trailingIcon: string; }>"
20881
+ }
20882
+ }
20883
+ },
20884
+ "loading": {
20885
+ "name": "loading",
20886
+ "global": false,
20887
+ "description": "When `true`, the loading icon will be displayed.",
20888
+ "tags": [],
20889
+ "required": false,
20890
+ "type": "boolean | undefined",
20891
+ "schema": "boolean | undefined"
20892
+ },
20893
+ "icon": {
20894
+ "name": "icon",
20895
+ "global": false,
20896
+ "description": "Display an icon on the left side.",
20897
+ "tags": [],
20898
+ "required": false,
20899
+ "type": "IconComponent | undefined",
20900
+ "schema": {
20901
+ "kind": "enum",
20902
+ "type": "IconComponent | undefined",
20903
+ "schema": {
20904
+ "0": "undefined",
20905
+ "1": {
20906
+ "kind": "event",
20907
+ "type": "(props: HTMLAttributes & VNodeProps & {}, ctx: Omit<{ attrs: Data; slots: Readonly<InternalSlots>; emit: (event: string, ...args: any[]) => void; expose: <Exposed extends Record<string, any> = Record<...>>(exposed?: Exposed | undefined) => void; }, \"expose\">): any",
20908
+ "schema": []
20909
+ }
20910
+ }
20911
+ }
20912
+ },
20913
+ "avatar": {
20914
+ "name": "avatar",
20915
+ "global": false,
20916
+ "description": "Display an avatar on the left side.",
20917
+ "tags": [],
20918
+ "required": false,
20919
+ "type": "AvatarProps | undefined",
20920
+ "schema": {
20921
+ "kind": "enum",
20922
+ "type": "AvatarProps | undefined",
20923
+ "schema": {
20924
+ "0": "undefined",
20925
+ "1": {
20926
+ "kind": "object",
20927
+ "type": "AvatarProps",
20928
+ "schema": {
20929
+ "as": {
20930
+ "name": "as",
20931
+ "global": false,
20932
+ "description": "The element or component this component should render as.",
20933
+ "tags": [
20934
+ {
20935
+ "name": "defaultValue",
20936
+ "text": "'span'"
20937
+ }
20938
+ ],
20939
+ "required": false,
20940
+ "type": "any",
20941
+ "schema": "any"
20942
+ },
20943
+ "src": {
20944
+ "name": "src",
20945
+ "global": false,
20946
+ "description": "",
20947
+ "tags": [],
20948
+ "required": false,
20949
+ "type": "string | undefined",
20950
+ "schema": "string | undefined"
20951
+ },
20952
+ "alt": {
20953
+ "name": "alt",
20954
+ "global": false,
20955
+ "description": "",
20956
+ "tags": [],
20957
+ "required": false,
20958
+ "type": "string | undefined",
20959
+ "schema": "string | undefined"
20960
+ },
20961
+ "icon": {
20962
+ "name": "icon",
20963
+ "global": false,
20964
+ "description": "",
20965
+ "tags": [],
20966
+ "required": false,
20967
+ "type": "IconComponent | undefined",
20968
+ "schema": "IconComponent | undefined"
20969
+ },
20970
+ "text": {
20971
+ "name": "text",
20972
+ "global": false,
20973
+ "description": "",
20974
+ "tags": [],
20975
+ "required": false,
20976
+ "type": "string | undefined",
20977
+ "schema": "string | undefined"
20978
+ },
20979
+ "size": {
20980
+ "name": "size",
20981
+ "global": false,
20982
+ "description": "",
20983
+ "tags": [],
20984
+ "required": false,
20985
+ "type": "\"lg\" | \"md\" | \"3xs\" | \"2xs\" | \"xs\" | \"sm\" | \"xl\" | \"2xl\" | \"3xl\" | undefined",
20986
+ "schema": {
20987
+ "kind": "enum",
20988
+ "type": "\"lg\" | \"md\" | \"3xs\" | \"2xs\" | \"xs\" | \"sm\" | \"xl\" | \"2xl\" | \"3xl\" | undefined",
20989
+ "schema": {
20990
+ "0": "undefined",
20991
+ "1": "\"lg\"",
20992
+ "2": "\"md\"",
20993
+ "3": "\"3xs\"",
20994
+ "4": "\"2xs\"",
20995
+ "5": "\"xs\"",
20996
+ "6": "\"sm\"",
20997
+ "7": "\"xl\"",
20998
+ "8": "\"2xl\"",
20999
+ "9": "\"3xl\""
21000
+ }
21001
+ }
21002
+ },
21003
+ "class": {
21004
+ "name": "class",
21005
+ "global": false,
21006
+ "description": "",
21007
+ "tags": [],
21008
+ "required": false,
21009
+ "type": "any",
21010
+ "schema": "any"
21011
+ },
21012
+ "b24ui": {
21013
+ "name": "b24ui",
21014
+ "global": false,
21015
+ "description": "",
21016
+ "tags": [],
21017
+ "required": false,
21018
+ "type": "Partial<{ root: string; image: string; fallback: string; icon: string; }> | undefined",
21019
+ "schema": {
21020
+ "kind": "enum",
21021
+ "type": "Partial<{ root: string; image: string; fallback: string; icon: string; }> | undefined",
21022
+ "schema": {
21023
+ "0": "undefined",
21024
+ "1": "Partial<{ root: string; image: string; fallback: string; icon: string; }>"
21025
+ }
21026
+ }
21027
+ },
21028
+ "delayMs": {
21029
+ "name": "delayMs",
21030
+ "global": false,
21031
+ "description": "Useful for delaying rendering so it only appears for those with slower connections.",
21032
+ "tags": [],
21033
+ "required": false,
21034
+ "type": "number | undefined",
21035
+ "schema": {
21036
+ "kind": "enum",
21037
+ "type": "number | undefined",
21038
+ "schema": {
21039
+ "0": "undefined",
21040
+ "1": "number"
21041
+ }
21042
+ }
21043
+ }
21044
+ }
21045
+ }
21046
+ }
21047
+ }
21048
+ },
21049
+ "as": {
21050
+ "name": "as",
21051
+ "global": false,
21052
+ "description": "The element or component this component should render as when not a link.",
21053
+ "tags": [
21054
+ {
21055
+ "name": "defaultValue",
21056
+ "text": "'button'"
21057
+ }
21058
+ ],
21059
+ "required": false,
21060
+ "type": "any",
21061
+ "schema": "any"
21062
+ },
21063
+ "type": {
21064
+ "name": "type",
21065
+ "global": false,
21066
+ "description": "The type of the button when not a link.",
21067
+ "tags": [
21068
+ {
21069
+ "name": "defaultValue",
21070
+ "text": "'button'"
21071
+ }
21072
+ ],
21073
+ "required": false,
21074
+ "type": "\"reset\" | \"submit\" | \"button\" | undefined",
21075
+ "schema": {
21076
+ "kind": "enum",
21077
+ "type": "\"reset\" | \"submit\" | \"button\" | undefined",
21078
+ "schema": {
21079
+ "0": "undefined",
21080
+ "1": "\"reset\"",
21081
+ "2": "\"submit\"",
21082
+ "3": "\"button\""
21083
+ }
21084
+ }
21085
+ },
21086
+ "to": {
21087
+ "name": "to",
21088
+ "global": false,
21089
+ "description": "Route Location the link should navigate to when clicked on.",
21090
+ "tags": [],
21091
+ "required": false,
21092
+ "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined",
21093
+ "schema": {
21094
+ "kind": "enum",
21095
+ "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined",
21096
+ "schema": {
21097
+ "0": "undefined",
21098
+ "1": "string",
21099
+ "2": {
21100
+ "kind": "object",
21101
+ "type": "RouteLocationAsRelativeGeneric",
21102
+ "schema": {
21103
+ "name": {
21104
+ "name": "name",
21105
+ "global": false,
21106
+ "description": "",
21107
+ "tags": [],
21108
+ "required": false,
21109
+ "type": "RouteRecordNameGeneric",
21110
+ "schema": {
21111
+ "kind": "enum",
21112
+ "type": "RouteRecordNameGeneric",
21113
+ "schema": {
21114
+ "0": "undefined",
21115
+ "1": "string",
21116
+ "2": "symbol"
21117
+ }
21118
+ }
21119
+ },
21120
+ "params": {
21121
+ "name": "params",
21122
+ "global": false,
21123
+ "description": "",
21124
+ "tags": [],
21125
+ "required": false,
21126
+ "type": "RouteParamsRawGeneric | undefined",
21127
+ "schema": {
21128
+ "kind": "enum",
21129
+ "type": "RouteParamsRawGeneric | undefined",
21130
+ "schema": {
21131
+ "0": "undefined",
21132
+ "1": "RouteParamsRawGeneric"
21133
+ }
21134
+ }
21135
+ },
21136
+ "path": {
21137
+ "name": "path",
21138
+ "global": false,
21139
+ "description": "A relative path to the current location. This property should be removed",
21140
+ "tags": [],
21141
+ "required": false,
21142
+ "type": "undefined",
21143
+ "schema": "undefined"
21144
+ },
21145
+ "query": {
21146
+ "name": "query",
21147
+ "global": false,
21148
+ "description": "",
21149
+ "tags": [],
21150
+ "required": false,
21151
+ "type": "LocationQueryRaw | undefined",
21152
+ "schema": {
21153
+ "kind": "enum",
21154
+ "type": "LocationQueryRaw | undefined",
21155
+ "schema": {
21156
+ "0": "undefined",
21157
+ "1": "LocationQueryRaw"
21158
+ }
21159
+ }
21160
+ },
21161
+ "hash": {
21162
+ "name": "hash",
21163
+ "global": false,
21164
+ "description": "",
21165
+ "tags": [],
21166
+ "required": false,
21167
+ "type": "string | undefined",
21168
+ "schema": "string | undefined"
21169
+ },
21170
+ "replace": {
21171
+ "name": "replace",
21172
+ "global": false,
21173
+ "description": "Replace the entry in the history instead of pushing a new entry",
21174
+ "tags": [],
21175
+ "required": false,
21176
+ "type": "boolean | undefined",
21177
+ "schema": "boolean | undefined"
21178
+ },
21179
+ "force": {
21180
+ "name": "force",
21181
+ "global": false,
21182
+ "description": "Triggers the navigation even if the location is the same as the current one.\r\nNote this will also add a new entry to the history unless `replace: true`\r\nis passed.",
21183
+ "tags": [],
21184
+ "required": false,
21185
+ "type": "boolean | undefined",
21186
+ "schema": "boolean | undefined"
21187
+ },
21188
+ "state": {
21189
+ "name": "state",
21190
+ "global": false,
21191
+ "description": "State to save using the History API. This cannot contain any reactive\r\nvalues and some primitives like Symbols are forbidden. More info at\r\nhttps://developer.mozilla.org/en-US/docs/Web/API/History/state",
21192
+ "tags": [],
21193
+ "required": false,
21194
+ "type": "HistoryState | undefined",
21195
+ "schema": {
21196
+ "kind": "enum",
21197
+ "type": "HistoryState | undefined",
21198
+ "schema": {
21199
+ "0": "undefined",
21200
+ "1": {
21201
+ "kind": "object",
21202
+ "type": "HistoryState",
21203
+ "schema": {}
21204
+ }
21205
+ }
21206
+ }
21207
+ }
21208
+ }
21209
+ },
21210
+ "3": {
21211
+ "kind": "object",
21212
+ "type": "RouteLocationAsPathGeneric",
21213
+ "schema": {
21214
+ "path": {
21215
+ "name": "path",
21216
+ "global": false,
21217
+ "description": "Percentage encoded pathname section of the URL.",
21218
+ "tags": [],
21219
+ "required": true,
21220
+ "type": "string",
21221
+ "schema": "string"
21222
+ },
21223
+ "query": {
21224
+ "name": "query",
21225
+ "global": false,
21226
+ "description": "",
21227
+ "tags": [],
21228
+ "required": false,
21229
+ "type": "LocationQueryRaw | undefined",
21230
+ "schema": "LocationQueryRaw | undefined"
21231
+ },
21232
+ "hash": {
21233
+ "name": "hash",
21234
+ "global": false,
21235
+ "description": "",
21236
+ "tags": [],
21237
+ "required": false,
21238
+ "type": "string | undefined",
21239
+ "schema": "string | undefined"
21240
+ },
21241
+ "replace": {
21242
+ "name": "replace",
21243
+ "global": false,
21244
+ "description": "Replace the entry in the history instead of pushing a new entry",
21245
+ "tags": [],
21246
+ "required": false,
21247
+ "type": "boolean | undefined",
21248
+ "schema": "boolean | undefined"
21249
+ },
21250
+ "force": {
21251
+ "name": "force",
21252
+ "global": false,
21253
+ "description": "Triggers the navigation even if the location is the same as the current one.\r\nNote this will also add a new entry to the history unless `replace: true`\r\nis passed.",
21254
+ "tags": [],
21255
+ "required": false,
21256
+ "type": "boolean | undefined",
21257
+ "schema": "boolean | undefined"
21258
+ },
21259
+ "state": {
21260
+ "name": "state",
21261
+ "global": false,
21262
+ "description": "State to save using the History API. This cannot contain any reactive\r\nvalues and some primitives like Symbols are forbidden. More info at\r\nhttps://developer.mozilla.org/en-US/docs/Web/API/History/state",
21263
+ "tags": [],
21264
+ "required": false,
21265
+ "type": "HistoryState | undefined",
21266
+ "schema": "HistoryState | undefined"
21267
+ }
21268
+ }
21269
+ }
21270
+ }
21271
+ }
21272
+ },
21273
+ "activeClass": {
21274
+ "name": "activeClass",
21275
+ "global": false,
21276
+ "description": "Class to apply when the link is active",
21277
+ "tags": [],
21278
+ "required": false,
21279
+ "type": "string | undefined",
21280
+ "schema": "string | undefined"
21281
+ },
21282
+ "exactActiveClass": {
21283
+ "name": "exactActiveClass",
21284
+ "global": false,
21285
+ "description": "Class to apply when the link is exact active",
21286
+ "tags": [],
21287
+ "required": false,
21288
+ "type": "string | undefined",
21289
+ "schema": "string | undefined"
21290
+ },
21291
+ "ariaCurrentValue": {
21292
+ "name": "ariaCurrentValue",
21293
+ "global": false,
21294
+ "description": "Value passed to the attribute `aria-current` when the link is exact active.",
21295
+ "tags": [
21296
+ {
21297
+ "name": "defaultValue",
21298
+ "text": "`'page'`"
21299
+ }
21300
+ ],
21301
+ "required": false,
21302
+ "type": "\"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\" | \"time\" | undefined",
21303
+ "schema": {
21304
+ "kind": "enum",
21305
+ "type": "\"true\" | \"false\" | \"page\" | \"step\" | \"location\" | \"date\" | \"time\" | undefined",
21306
+ "schema": {
21307
+ "0": "undefined",
21308
+ "1": "\"true\"",
21309
+ "2": "\"false\"",
21310
+ "3": "\"page\"",
21311
+ "4": "\"step\"",
21312
+ "5": "\"location\"",
21313
+ "6": "\"date\"",
21314
+ "7": "\"time\""
21315
+ }
21316
+ }
21317
+ },
21318
+ "viewTransition": {
21319
+ "name": "viewTransition",
21320
+ "global": false,
21321
+ "description": "Pass the returned promise of `router.push()` to `document.startViewTransition()` if supported.",
21322
+ "tags": [],
21323
+ "required": false,
21324
+ "type": "boolean | undefined",
21325
+ "schema": "boolean | undefined"
21326
+ },
21327
+ "replace": {
21328
+ "name": "replace",
21329
+ "global": false,
21330
+ "description": "Calls `router.replace` instead of `router.push`.",
21331
+ "tags": [],
21332
+ "required": false,
21333
+ "type": "boolean | undefined",
21334
+ "schema": "boolean | undefined"
21335
+ },
21336
+ "disabled": {
21337
+ "name": "disabled",
21338
+ "global": false,
21339
+ "description": "",
21340
+ "tags": [],
21341
+ "required": false,
21342
+ "type": "boolean | undefined",
21343
+ "schema": "boolean | undefined"
21344
+ },
21345
+ "active": {
21346
+ "name": "active",
21347
+ "global": false,
21348
+ "description": "Force the link to be active independent of the current route.",
21349
+ "tags": [],
21350
+ "required": false,
21351
+ "type": "boolean | undefined",
21352
+ "schema": "boolean | undefined"
21353
+ },
21354
+ "exact": {
21355
+ "name": "exact",
21356
+ "global": false,
21357
+ "description": "Will only be active if the current route is an exact match.",
21358
+ "tags": [],
21359
+ "required": false,
21360
+ "type": "boolean | undefined",
21361
+ "schema": "boolean | undefined"
21362
+ },
21363
+ "exactQuery": {
21364
+ "name": "exactQuery",
21365
+ "global": false,
21366
+ "description": "Allows controlling how the current route query sets the link as active.",
21367
+ "tags": [],
21368
+ "required": false,
21369
+ "type": "boolean | \"partial\" | undefined",
21370
+ "schema": {
21371
+ "kind": "enum",
21372
+ "type": "boolean | \"partial\" | undefined",
21373
+ "schema": {
21374
+ "0": "undefined",
21375
+ "1": "false",
21376
+ "2": "true",
21377
+ "3": "\"partial\""
21378
+ }
21379
+ }
21380
+ },
21381
+ "exactHash": {
21382
+ "name": "exactHash",
21383
+ "global": false,
21384
+ "description": "Will only be active if the current route hash is an exact match.",
21385
+ "tags": [],
21386
+ "required": false,
21387
+ "type": "boolean | undefined",
21388
+ "schema": "boolean | undefined"
21389
+ },
21390
+ "inactiveClass": {
21391
+ "name": "inactiveClass",
21392
+ "global": false,
21393
+ "description": "The class to apply when the link is inactive.",
21394
+ "tags": [],
21395
+ "required": false,
21396
+ "type": "string | undefined",
21397
+ "schema": "string | undefined"
21398
+ },
21399
+ "isAction": {
21400
+ "name": "isAction",
21401
+ "global": false,
21402
+ "description": "When `true`, uses special underlined styling.",
21403
+ "tags": [],
21404
+ "required": false,
21405
+ "type": "boolean | undefined",
21406
+ "schema": "boolean | undefined"
21407
+ },
21408
+ "href": {
21409
+ "name": "href",
21410
+ "global": false,
21411
+ "description": "An alias for `to`. If used with `to`, `href` will be ignored",
21412
+ "tags": [],
21413
+ "required": false,
21414
+ "type": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined",
21415
+ "schema": "string | RouteLocationAsRelativeGeneric | RouteLocationAsPathGeneric | undefined"
21416
+ },
21417
+ "external": {
21418
+ "name": "external",
21419
+ "global": false,
21420
+ "description": "Forces the link to be considered as external (true) or internal (false). This is helpful to handle edge-cases",
21421
+ "tags": [],
21422
+ "required": false,
21423
+ "type": "boolean | undefined",
21424
+ "schema": "boolean | undefined"
21425
+ },
21426
+ "target": {
21427
+ "name": "target",
21428
+ "global": false,
21429
+ "description": "Where to display the linked URL as the name for a browsing context.",
21430
+ "tags": [],
21431
+ "required": false,
21432
+ "type": "\"_blank\" | \"_parent\" | \"_self\" | \"_top\" | (string & {}) | null | undefined",
21433
+ "schema": {
21434
+ "kind": "enum",
21435
+ "type": "\"_blank\" | \"_parent\" | \"_self\" | \"_top\" | (string & {}) | null | undefined",
21436
+ "schema": {
21437
+ "0": "undefined",
21438
+ "1": "null",
21439
+ "2": "\"_blank\"",
21440
+ "3": "\"_parent\"",
21441
+ "4": "\"_self\"",
21442
+ "5": "\"_top\"",
21443
+ "6": {
21444
+ "kind": "object",
21445
+ "type": "string & {}",
21446
+ "schema": {}
21447
+ }
21448
+ }
21449
+ }
21450
+ },
21451
+ "rel": {
21452
+ "name": "rel",
21453
+ "global": false,
21454
+ "description": "A rel attribute value to apply on the link. Defaults to \"noopener noreferrer\" for external links.",
21455
+ "tags": [],
21456
+ "required": false,
21457
+ "type": "(string & {}) | \"noopener\" | \"noreferrer\" | \"nofollow\" | \"sponsored\" | \"ugc\" | null | undefined",
21458
+ "schema": {
21459
+ "kind": "enum",
21460
+ "type": "(string & {}) | \"noopener\" | \"noreferrer\" | \"nofollow\" | \"sponsored\" | \"ugc\" | null | undefined",
21461
+ "schema": {
21462
+ "0": "undefined",
21463
+ "1": "null",
21464
+ "2": "string & {}",
21465
+ "3": "\"noopener\"",
21466
+ "4": "\"noreferrer\"",
21467
+ "5": "\"nofollow\"",
21468
+ "6": "\"sponsored\"",
21469
+ "7": "\"ugc\""
21470
+ }
21471
+ }
21472
+ },
21473
+ "noRel": {
21474
+ "name": "noRel",
21475
+ "global": false,
21476
+ "description": "If set to true, no rel attribute will be added to the link",
21477
+ "tags": [],
21478
+ "required": false,
21479
+ "type": "boolean | undefined",
21480
+ "schema": "boolean | undefined"
21481
+ },
21482
+ "prefetchedClass": {
21483
+ "name": "prefetchedClass",
21484
+ "global": false,
21485
+ "description": "A class to apply to links that have been prefetched.",
21486
+ "tags": [],
21487
+ "required": false,
21488
+ "type": "string | undefined",
21489
+ "schema": "string | undefined"
21490
+ },
21491
+ "prefetch": {
21492
+ "name": "prefetch",
21493
+ "global": false,
21494
+ "description": "When enabled will prefetch middleware, layouts and payloads of links in the viewport.",
21495
+ "tags": [],
21496
+ "required": false,
21497
+ "type": "boolean | undefined",
21498
+ "schema": "boolean | undefined"
21499
+ },
21500
+ "prefetchOn": {
21501
+ "name": "prefetchOn",
21502
+ "global": false,
21503
+ "description": "Allows controlling when to prefetch links. By default, prefetch is triggered only on visibility.",
21504
+ "tags": [],
21505
+ "required": false,
21506
+ "type": "\"visibility\" | \"interaction\" | Partial<{ visibility: boolean; interaction: boolean; }> | undefined",
21507
+ "schema": {
21508
+ "kind": "enum",
21509
+ "type": "\"visibility\" | \"interaction\" | Partial<{ visibility: boolean; interaction: boolean; }> | undefined",
21510
+ "schema": {
21511
+ "0": "undefined",
21512
+ "1": "\"visibility\"",
21513
+ "2": "\"interaction\"",
21514
+ "3": "Partial<{ visibility: boolean; interaction: boolean; }>"
21515
+ }
21516
+ }
21517
+ },
21518
+ "noPrefetch": {
21519
+ "name": "noPrefetch",
21520
+ "global": false,
21521
+ "description": "Escape hatch to disable `prefetch` attribute.",
21522
+ "tags": [],
21523
+ "required": false,
21524
+ "type": "boolean | undefined",
21525
+ "schema": "boolean | undefined"
21526
+ }
21527
+ }
21528
+ }
21529
+ }
21530
+ },
21531
+ "default": "true"
21532
+ },
21533
+ {
21534
+ "name": "closeIcon",
21535
+ "global": false,
21536
+ "description": "The icon displayed in the close button.",
21537
+ "tags": [
21538
+ {
21539
+ "name": "defaultValue",
21540
+ "text": "icons.close"
21541
+ }
21542
+ ],
21543
+ "required": false,
21544
+ "type": "IconComponent | undefined",
21545
+ "schema": {
21546
+ "kind": "enum",
21547
+ "type": "IconComponent | undefined",
21548
+ "schema": {
21549
+ "0": "undefined",
21550
+ "1": {
21551
+ "kind": "event",
21552
+ "type": "(props: HTMLAttributes & VNodeProps & {}, ctx: Omit<{ attrs: Data; slots: Readonly<InternalSlots>; emit: (event: string, ...args: any[]) => void; expose: <Exposed extends Record<string, any> = Record<...>>(exposed?: Exposed | undefined) => void; }, \"expose\">): any",
21553
+ "schema": []
21554
+ }
21555
+ }
21556
+ }
21557
+ },
21558
+ {
21559
+ "name": "dismissible",
21560
+ "global": false,
21561
+ "description": "When `false`, the modal will not close when clicking outside or pressing escape.",
21562
+ "tags": [
21563
+ {
21564
+ "name": "defaultValue",
21565
+ "text": "true"
21566
+ }
21567
+ ],
21568
+ "required": false,
21569
+ "type": "boolean | undefined",
21570
+ "schema": {
21571
+ "kind": "enum",
21572
+ "type": "boolean | undefined",
21573
+ "schema": {
21574
+ "0": "undefined",
21575
+ "1": "false",
21576
+ "2": "true"
21577
+ }
21578
+ },
21579
+ "default": "true"
21580
+ },
21581
+ {
21582
+ "name": "b24ui",
21583
+ "global": false,
21584
+ "description": "",
21585
+ "tags": [],
21586
+ "required": false,
21587
+ "type": "Partial<{ overlay: string; content: string; header: string; body: string; footer: string; title: string; description: string; close: string; }> | undefined",
21588
+ "schema": {
21589
+ "kind": "enum",
21590
+ "type": "Partial<{ overlay: string; content: string; header: string; body: string; footer: string; title: string; description: string; close: string; }> | undefined",
21591
+ "schema": {
21592
+ "0": "undefined",
21593
+ "1": "Partial<{ overlay: string; content: string; header: string; body: string; footer: string; title: string; description: string; close: string; }>"
21594
+ }
21595
+ }
21596
+ },
21597
+ {
21598
+ "name": "open",
21599
+ "global": false,
21600
+ "description": "The controlled open state of the dialog. Can be binded as `v-model:open`.",
21601
+ "tags": [],
21602
+ "required": false,
21603
+ "type": "boolean | undefined",
21604
+ "schema": {
21605
+ "kind": "enum",
21606
+ "type": "boolean | undefined",
21607
+ "schema": {
21608
+ "0": "undefined",
21609
+ "1": "false",
21610
+ "2": "true"
21611
+ }
21612
+ }
21613
+ },
21614
+ {
21615
+ "name": "defaultOpen",
21616
+ "global": false,
21617
+ "description": "The open state of the dialog when it is initially rendered. Use when you do not need to control its open state.",
21618
+ "tags": [],
21619
+ "required": false,
21620
+ "type": "boolean | undefined",
21621
+ "schema": {
21622
+ "kind": "enum",
21623
+ "type": "boolean | undefined",
21624
+ "schema": {
21625
+ "0": "undefined",
21626
+ "1": "false",
21627
+ "2": "true"
21628
+ }
21629
+ }
21630
+ },
21631
+ {
21632
+ "name": "modal",
21633
+ "global": false,
21634
+ "description": "The modality of the dialog When set to `true`, <br>\r\ninteraction with outside elements will be disabled and only dialog content will be visible to screen readers.",
21635
+ "tags": [],
21636
+ "required": false,
21637
+ "type": "boolean | undefined",
21638
+ "schema": {
21639
+ "kind": "enum",
21640
+ "type": "boolean | undefined",
21641
+ "schema": {
21642
+ "0": "undefined",
21643
+ "1": "false",
21644
+ "2": "true"
21645
+ }
21646
+ },
21647
+ "default": "true"
21648
+ }
21649
+ ],
21650
+ "slots": [
21651
+ {
21652
+ "name": "default",
21653
+ "type": "{ open: boolean; }",
21654
+ "description": "",
21655
+ "schema": {
21656
+ "kind": "object",
21657
+ "type": "{ open: boolean; }",
21658
+ "schema": {
21659
+ "open": {
21660
+ "name": "open",
21661
+ "global": false,
21662
+ "description": "",
21663
+ "tags": [],
21664
+ "required": true,
21665
+ "type": "boolean",
21666
+ "schema": {
21667
+ "kind": "enum",
21668
+ "type": "boolean",
21669
+ "schema": {
21670
+ "0": "false",
21671
+ "1": "true"
21672
+ }
21673
+ }
21674
+ }
21675
+ }
21676
+ }
21677
+ },
21678
+ {
21679
+ "name": "content",
21680
+ "type": "{} | undefined",
21681
+ "description": "",
21682
+ "schema": {
21683
+ "kind": "enum",
21684
+ "type": "{} | undefined",
21685
+ "schema": {
21686
+ "0": "undefined",
21687
+ "1": {
21688
+ "kind": "object",
21689
+ "type": "{}",
21690
+ "schema": {}
21691
+ }
21692
+ }
21693
+ }
21694
+ },
21695
+ {
21696
+ "name": "header",
21697
+ "type": "{} | undefined",
21698
+ "description": "",
21699
+ "schema": {
21700
+ "kind": "enum",
21701
+ "type": "{} | undefined",
21702
+ "schema": {
21703
+ "0": "undefined",
21704
+ "1": {
21705
+ "kind": "object",
21706
+ "type": "{}",
21707
+ "schema": {}
21708
+ }
21709
+ }
21710
+ }
21711
+ },
21712
+ {
21713
+ "name": "title",
21714
+ "type": "{} | undefined",
21715
+ "description": "",
21716
+ "schema": {
21717
+ "kind": "enum",
21718
+ "type": "{} | undefined",
21719
+ "schema": {
21720
+ "0": "undefined",
21721
+ "1": {
21722
+ "kind": "object",
21723
+ "type": "{}",
21724
+ "schema": {}
21725
+ }
21726
+ }
21727
+ }
21728
+ },
21729
+ {
21730
+ "name": "description",
21731
+ "type": "{} | undefined",
21732
+ "description": "",
21733
+ "schema": {
21734
+ "kind": "enum",
21735
+ "type": "{} | undefined",
21736
+ "schema": {
21737
+ "0": "undefined",
21738
+ "1": {
21739
+ "kind": "object",
21740
+ "type": "{}",
21741
+ "schema": {}
21742
+ }
21743
+ }
21744
+ }
21745
+ },
21746
+ {
21747
+ "name": "close",
21748
+ "type": "{ b24ui: any; }",
21749
+ "description": "",
21750
+ "schema": {
21751
+ "kind": "object",
21752
+ "type": "{ b24ui: any; }",
21753
+ "schema": {
21754
+ "b24ui": {
21755
+ "name": "b24ui",
21756
+ "global": false,
21757
+ "description": "",
21758
+ "tags": [],
21759
+ "required": true,
21760
+ "type": "any",
21761
+ "schema": "any"
21762
+ }
21763
+ }
21764
+ }
21765
+ },
21766
+ {
21767
+ "name": "body",
21768
+ "type": "{} | undefined",
21769
+ "description": "",
21770
+ "schema": {
21771
+ "kind": "enum",
21772
+ "type": "{} | undefined",
21773
+ "schema": {
21774
+ "0": "undefined",
21775
+ "1": {
21776
+ "kind": "object",
21777
+ "type": "{}",
21778
+ "schema": {}
21779
+ }
21780
+ }
21781
+ }
21782
+ },
21783
+ {
21784
+ "name": "footer",
21785
+ "type": "{} | undefined",
21786
+ "description": "",
21787
+ "schema": {
21788
+ "kind": "enum",
21789
+ "type": "{} | undefined",
21790
+ "schema": {
21791
+ "0": "undefined",
21792
+ "1": {
21793
+ "kind": "object",
21794
+ "type": "{}",
21795
+ "schema": {}
21796
+ }
21797
+ }
21798
+ }
21799
+ }
21800
+ ],
21801
+ "events": [],
21802
+ "exposed": []
21803
+ }
21804
+ },
21805
+ "B24ModalDialogClose": {
21806
+ "mode": "all",
21807
+ "prefetch": false,
21808
+ "preload": false,
21809
+ "pascalName": "B24ModalDialogClose",
21810
+ "kebabName": "b24-modal-dialog-close",
21811
+ "chunkName": "components/b24-modal-dialog-close",
21812
+ "priority": 0,
21813
+ "_scanned": true,
21814
+ "meta": {
21815
+ "type": 0,
21816
+ "props": [],
21817
+ "slots": [
21818
+ {
21819
+ "name": "default",
21820
+ "type": "{}",
21821
+ "description": "",
21822
+ "schema": {
21823
+ "kind": "object",
21824
+ "type": "{}",
21825
+ "schema": {}
21826
+ }
21827
+ }
21828
+ ],
21829
+ "events": [],
21830
+ "exposed": []
21831
+ }
21832
+ },
21833
+ "B24ModalProvider": {
21834
+ "mode": "all",
21835
+ "prefetch": false,
21836
+ "preload": false,
21837
+ "pascalName": "B24ModalProvider",
21838
+ "kebabName": "b24-modal-provider",
21839
+ "chunkName": "components/b24-modal-provider",
21840
+ "priority": 0,
21841
+ "_scanned": true,
21842
+ "meta": {
21843
+ "type": 0,
21844
+ "props": [],
21845
+ "slots": [],
21846
+ "events": [],
21847
+ "exposed": []
21848
+ }
21849
+ },
20506
21850
  "B24Progress": {
20507
21851
  "mode": "all",
20508
21852
  "prefetch": false,
@@ -21564,37 +22908,37 @@ var B24UIMeta = {
21564
22908
  "default": "1"
21565
22909
  },
21566
22910
  {
21567
- "name": "max",
22911
+ "name": "name",
21568
22912
  "global": false,
21569
- "description": "The maximum value for the range.",
22913
+ "description": "The name of the field. Submitted with its owning form as part of a name/value pair.",
21570
22914
  "tags": [],
21571
22915
  "required": false,
21572
- "type": "number | undefined",
22916
+ "type": "string | undefined",
21573
22917
  "schema": {
21574
22918
  "kind": "enum",
21575
- "type": "number | undefined",
22919
+ "type": "string | undefined",
21576
22920
  "schema": {
21577
22921
  "0": "undefined",
21578
- "1": "number"
22922
+ "1": "string"
21579
22923
  }
21580
- },
21581
- "default": "100"
22924
+ }
21582
22925
  },
21583
22926
  {
21584
- "name": "name",
22927
+ "name": "max",
21585
22928
  "global": false,
21586
- "description": "The name of the field. Submitted with its owning form as part of a name/value pair.",
22929
+ "description": "The maximum value for the range.",
21587
22930
  "tags": [],
21588
22931
  "required": false,
21589
- "type": "string | undefined",
22932
+ "type": "number | undefined",
21590
22933
  "schema": {
21591
22934
  "kind": "enum",
21592
- "type": "string | undefined",
22935
+ "type": "number | undefined",
21593
22936
  "schema": {
21594
22937
  "0": "undefined",
21595
- "1": "string"
22938
+ "1": "number"
21596
22939
  }
21597
- }
22940
+ },
22941
+ "default": "100"
21598
22942
  },
21599
22943
  {
21600
22944
  "name": "inverted",