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