@bitrix24/b24ui-nuxt 0.4.6 → 0.4.7

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/meta.d.cts CHANGED
@@ -18132,15 +18132,15 @@ var B24UIMeta = {
18132
18132
  }
18133
18133
  ],
18134
18134
  "required": false,
18135
- "type": "\"start\" | \"end\" | \"center\" | undefined",
18135
+ "type": "\"start\" | \"center\" | \"end\" | undefined",
18136
18136
  "schema": {
18137
18137
  "kind": "enum",
18138
- "type": "\"start\" | \"end\" | \"center\" | undefined",
18138
+ "type": "\"start\" | \"center\" | \"end\" | undefined",
18139
18139
  "schema": {
18140
18140
  "0": "undefined",
18141
18141
  "1": "\"start\"",
18142
- "2": "\"end\"",
18143
- "3": "\"center\""
18142
+ "2": "\"center\"",
18143
+ "3": "\"end\""
18144
18144
  }
18145
18145
  }
18146
18146
  },
@@ -18704,17 +18704,33 @@ var B24UIMeta = {
18704
18704
  "slots": [
18705
18705
  {
18706
18706
  "name": "default",
18707
- "type": "{} | undefined",
18707
+ "type": "{ errors: FormError<string>[]; } | undefined",
18708
18708
  "description": "",
18709
18709
  "schema": {
18710
18710
  "kind": "enum",
18711
- "type": "{} | undefined",
18711
+ "type": "{ errors: FormError<string>[]; } | undefined",
18712
18712
  "schema": {
18713
18713
  "0": "undefined",
18714
18714
  "1": {
18715
18715
  "kind": "object",
18716
- "type": "{}",
18717
- "schema": {}
18716
+ "type": "{ errors: FormError<string>[]; }",
18717
+ "schema": {
18718
+ "errors": {
18719
+ "name": "errors",
18720
+ "global": false,
18721
+ "description": "",
18722
+ "tags": [],
18723
+ "required": true,
18724
+ "type": "FormError<string>[]",
18725
+ "schema": {
18726
+ "kind": "array",
18727
+ "type": "FormError<string>[]",
18728
+ "schema": {
18729
+ "0": "FormError<string>"
18730
+ }
18731
+ }
18732
+ }
18733
+ }
18718
18734
  }
18719
18735
  }
18720
18736
  }
@@ -29695,6 +29711,288 @@ var B24UIMeta = {
29695
29711
  "exposed": []
29696
29712
  }
29697
29713
  },
29714
+ "B24Popover": {
29715
+ "mode": "all",
29716
+ "prefetch": false,
29717
+ "preload": false,
29718
+ "pascalName": "B24Popover",
29719
+ "kebabName": "b24-popover",
29720
+ "chunkName": "components/b24-popover",
29721
+ "priority": 0,
29722
+ "_scanned": true,
29723
+ "meta": {
29724
+ "type": 0,
29725
+ "props": [
29726
+ {
29727
+ "name": "mode",
29728
+ "global": false,
29729
+ "description": "The display mode of the popover.",
29730
+ "tags": [
29731
+ {
29732
+ "name": "defaultValue",
29733
+ "text": "'click'"
29734
+ }
29735
+ ],
29736
+ "required": false,
29737
+ "type": "\"click\" | \"hover\" | undefined",
29738
+ "schema": {
29739
+ "kind": "enum",
29740
+ "type": "\"click\" | \"hover\" | undefined",
29741
+ "schema": {
29742
+ "0": "undefined",
29743
+ "1": "\"click\"",
29744
+ "2": "\"hover\""
29745
+ }
29746
+ },
29747
+ "default": "\"click\""
29748
+ },
29749
+ {
29750
+ "name": "content",
29751
+ "global": false,
29752
+ "description": "The content of the popover.",
29753
+ "tags": [
29754
+ {
29755
+ "name": "defaultValue",
29756
+ "text": "{ side: 'bottom', sideOffset: 8, collisionPadding: 8 }"
29757
+ }
29758
+ ],
29759
+ "required": false,
29760
+ "type": "Omit<PopoverContentProps, \"as\" | \"asChild\" | \"forceMount\"> | undefined",
29761
+ "schema": {
29762
+ "kind": "enum",
29763
+ "type": "Omit<PopoverContentProps, \"as\" | \"asChild\" | \"forceMount\"> | undefined",
29764
+ "schema": {
29765
+ "0": "undefined",
29766
+ "1": "Omit<PopoverContentProps, \"as\" | \"asChild\" | \"forceMount\">"
29767
+ }
29768
+ }
29769
+ },
29770
+ {
29771
+ "name": "arrow",
29772
+ "global": false,
29773
+ "description": "Display an arrow alongside the popover.",
29774
+ "tags": [
29775
+ {
29776
+ "name": "defaultValue",
29777
+ "text": "false"
29778
+ }
29779
+ ],
29780
+ "required": false,
29781
+ "type": "boolean | Omit<PopoverArrowProps, \"as\" | \"asChild\"> | undefined",
29782
+ "schema": {
29783
+ "kind": "enum",
29784
+ "type": "boolean | Omit<PopoverArrowProps, \"as\" | \"asChild\"> | undefined",
29785
+ "schema": {
29786
+ "0": "undefined",
29787
+ "1": "false",
29788
+ "2": "true",
29789
+ "3": "Omit<PopoverArrowProps, \"as\" | \"asChild\">"
29790
+ }
29791
+ }
29792
+ },
29793
+ {
29794
+ "name": "portal",
29795
+ "global": false,
29796
+ "description": "Render the popover in a portal.",
29797
+ "tags": [
29798
+ {
29799
+ "name": "defaultValue",
29800
+ "text": "true"
29801
+ }
29802
+ ],
29803
+ "required": false,
29804
+ "type": "boolean | undefined",
29805
+ "schema": {
29806
+ "kind": "enum",
29807
+ "type": "boolean | undefined",
29808
+ "schema": {
29809
+ "0": "undefined",
29810
+ "1": "false",
29811
+ "2": "true"
29812
+ }
29813
+ },
29814
+ "default": "true"
29815
+ },
29816
+ {
29817
+ "name": "dismissible",
29818
+ "global": false,
29819
+ "description": "When `false`, the popover will not close when clicking outside or pressing escape.",
29820
+ "tags": [
29821
+ {
29822
+ "name": "defaultValue",
29823
+ "text": "true"
29824
+ }
29825
+ ],
29826
+ "required": false,
29827
+ "type": "boolean | undefined",
29828
+ "schema": {
29829
+ "kind": "enum",
29830
+ "type": "boolean | undefined",
29831
+ "schema": {
29832
+ "0": "undefined",
29833
+ "1": "false",
29834
+ "2": "true"
29835
+ }
29836
+ },
29837
+ "default": "true"
29838
+ },
29839
+ {
29840
+ "name": "b24ui",
29841
+ "global": false,
29842
+ "description": "",
29843
+ "tags": [],
29844
+ "required": false,
29845
+ "type": "Partial<{ content: string; arrow: string; }> | undefined",
29846
+ "schema": {
29847
+ "kind": "enum",
29848
+ "type": "Partial<{ content: string; arrow: string; }> | undefined",
29849
+ "schema": {
29850
+ "0": "undefined",
29851
+ "1": "Partial<{ content: string; arrow: string; }>"
29852
+ }
29853
+ }
29854
+ },
29855
+ {
29856
+ "name": "defaultOpen",
29857
+ "global": false,
29858
+ "description": "The open state of the popover when it is initially rendered. Use when you do not need to control its open state.",
29859
+ "tags": [],
29860
+ "required": false,
29861
+ "type": "boolean | undefined",
29862
+ "schema": {
29863
+ "kind": "enum",
29864
+ "type": "boolean | undefined",
29865
+ "schema": {
29866
+ "0": "undefined",
29867
+ "1": "false",
29868
+ "2": "true"
29869
+ }
29870
+ }
29871
+ },
29872
+ {
29873
+ "name": "open",
29874
+ "global": false,
29875
+ "description": "The controlled open state of the popover.",
29876
+ "tags": [],
29877
+ "required": false,
29878
+ "type": "boolean | undefined",
29879
+ "schema": {
29880
+ "kind": "enum",
29881
+ "type": "boolean | undefined",
29882
+ "schema": {
29883
+ "0": "undefined",
29884
+ "1": "false",
29885
+ "2": "true"
29886
+ }
29887
+ }
29888
+ },
29889
+ {
29890
+ "name": "modal",
29891
+ "global": false,
29892
+ "description": "The modality of the popover. When set to true, interaction with outside elements will be disabled and only popover content will be visible to screen readers.",
29893
+ "tags": [
29894
+ {
29895
+ "name": "defaultValue",
29896
+ "text": "false"
29897
+ }
29898
+ ],
29899
+ "required": false,
29900
+ "type": "boolean | undefined",
29901
+ "schema": {
29902
+ "kind": "enum",
29903
+ "type": "boolean | undefined",
29904
+ "schema": {
29905
+ "0": "undefined",
29906
+ "1": "false",
29907
+ "2": "true"
29908
+ }
29909
+ }
29910
+ },
29911
+ {
29912
+ "name": "openDelay",
29913
+ "global": false,
29914
+ "description": "The duration from when the mouse enters the trigger until the hover card opens.",
29915
+ "tags": [],
29916
+ "required": false,
29917
+ "type": "number | undefined",
29918
+ "schema": {
29919
+ "kind": "enum",
29920
+ "type": "number | undefined",
29921
+ "schema": {
29922
+ "0": "undefined",
29923
+ "1": "number"
29924
+ }
29925
+ },
29926
+ "default": "0"
29927
+ },
29928
+ {
29929
+ "name": "closeDelay",
29930
+ "global": false,
29931
+ "description": "The duration from when the mouse leaves the trigger or content until the hover card closes.",
29932
+ "tags": [],
29933
+ "required": false,
29934
+ "type": "number | undefined",
29935
+ "schema": {
29936
+ "kind": "enum",
29937
+ "type": "number | undefined",
29938
+ "schema": {
29939
+ "0": "undefined",
29940
+ "1": "number"
29941
+ }
29942
+ },
29943
+ "default": "0"
29944
+ }
29945
+ ],
29946
+ "slots": [
29947
+ {
29948
+ "name": "default",
29949
+ "type": "{ open: boolean; }",
29950
+ "description": "",
29951
+ "schema": {
29952
+ "kind": "object",
29953
+ "type": "{ open: boolean; }",
29954
+ "schema": {
29955
+ "open": {
29956
+ "name": "open",
29957
+ "global": false,
29958
+ "description": "",
29959
+ "tags": [],
29960
+ "required": true,
29961
+ "type": "boolean",
29962
+ "schema": {
29963
+ "kind": "enum",
29964
+ "type": "boolean",
29965
+ "schema": {
29966
+ "0": "false",
29967
+ "1": "true"
29968
+ }
29969
+ }
29970
+ }
29971
+ }
29972
+ }
29973
+ },
29974
+ {
29975
+ "name": "content",
29976
+ "type": "{} | undefined",
29977
+ "description": "",
29978
+ "schema": {
29979
+ "kind": "enum",
29980
+ "type": "{} | undefined",
29981
+ "schema": {
29982
+ "0": "undefined",
29983
+ "1": {
29984
+ "kind": "object",
29985
+ "type": "{}",
29986
+ "schema": {}
29987
+ }
29988
+ }
29989
+ }
29990
+ }
29991
+ ],
29992
+ "events": [],
29993
+ "exposed": []
29994
+ }
29995
+ },
29698
29996
  "B24Progress": {
29699
29997
  "mode": "all",
29700
29998
  "prefetch": false,
package/dist/meta.d.mts CHANGED
@@ -18132,15 +18132,15 @@ var B24UIMeta = {
18132
18132
  }
18133
18133
  ],
18134
18134
  "required": false,
18135
- "type": "\"start\" | \"end\" | \"center\" | undefined",
18135
+ "type": "\"start\" | \"center\" | \"end\" | undefined",
18136
18136
  "schema": {
18137
18137
  "kind": "enum",
18138
- "type": "\"start\" | \"end\" | \"center\" | undefined",
18138
+ "type": "\"start\" | \"center\" | \"end\" | undefined",
18139
18139
  "schema": {
18140
18140
  "0": "undefined",
18141
18141
  "1": "\"start\"",
18142
- "2": "\"end\"",
18143
- "3": "\"center\""
18142
+ "2": "\"center\"",
18143
+ "3": "\"end\""
18144
18144
  }
18145
18145
  }
18146
18146
  },
@@ -18704,17 +18704,33 @@ var B24UIMeta = {
18704
18704
  "slots": [
18705
18705
  {
18706
18706
  "name": "default",
18707
- "type": "{} | undefined",
18707
+ "type": "{ errors: FormError<string>[]; } | undefined",
18708
18708
  "description": "",
18709
18709
  "schema": {
18710
18710
  "kind": "enum",
18711
- "type": "{} | undefined",
18711
+ "type": "{ errors: FormError<string>[]; } | undefined",
18712
18712
  "schema": {
18713
18713
  "0": "undefined",
18714
18714
  "1": {
18715
18715
  "kind": "object",
18716
- "type": "{}",
18717
- "schema": {}
18716
+ "type": "{ errors: FormError<string>[]; }",
18717
+ "schema": {
18718
+ "errors": {
18719
+ "name": "errors",
18720
+ "global": false,
18721
+ "description": "",
18722
+ "tags": [],
18723
+ "required": true,
18724
+ "type": "FormError<string>[]",
18725
+ "schema": {
18726
+ "kind": "array",
18727
+ "type": "FormError<string>[]",
18728
+ "schema": {
18729
+ "0": "FormError<string>"
18730
+ }
18731
+ }
18732
+ }
18733
+ }
18718
18734
  }
18719
18735
  }
18720
18736
  }
@@ -29695,6 +29711,288 @@ var B24UIMeta = {
29695
29711
  "exposed": []
29696
29712
  }
29697
29713
  },
29714
+ "B24Popover": {
29715
+ "mode": "all",
29716
+ "prefetch": false,
29717
+ "preload": false,
29718
+ "pascalName": "B24Popover",
29719
+ "kebabName": "b24-popover",
29720
+ "chunkName": "components/b24-popover",
29721
+ "priority": 0,
29722
+ "_scanned": true,
29723
+ "meta": {
29724
+ "type": 0,
29725
+ "props": [
29726
+ {
29727
+ "name": "mode",
29728
+ "global": false,
29729
+ "description": "The display mode of the popover.",
29730
+ "tags": [
29731
+ {
29732
+ "name": "defaultValue",
29733
+ "text": "'click'"
29734
+ }
29735
+ ],
29736
+ "required": false,
29737
+ "type": "\"click\" | \"hover\" | undefined",
29738
+ "schema": {
29739
+ "kind": "enum",
29740
+ "type": "\"click\" | \"hover\" | undefined",
29741
+ "schema": {
29742
+ "0": "undefined",
29743
+ "1": "\"click\"",
29744
+ "2": "\"hover\""
29745
+ }
29746
+ },
29747
+ "default": "\"click\""
29748
+ },
29749
+ {
29750
+ "name": "content",
29751
+ "global": false,
29752
+ "description": "The content of the popover.",
29753
+ "tags": [
29754
+ {
29755
+ "name": "defaultValue",
29756
+ "text": "{ side: 'bottom', sideOffset: 8, collisionPadding: 8 }"
29757
+ }
29758
+ ],
29759
+ "required": false,
29760
+ "type": "Omit<PopoverContentProps, \"as\" | \"asChild\" | \"forceMount\"> | undefined",
29761
+ "schema": {
29762
+ "kind": "enum",
29763
+ "type": "Omit<PopoverContentProps, \"as\" | \"asChild\" | \"forceMount\"> | undefined",
29764
+ "schema": {
29765
+ "0": "undefined",
29766
+ "1": "Omit<PopoverContentProps, \"as\" | \"asChild\" | \"forceMount\">"
29767
+ }
29768
+ }
29769
+ },
29770
+ {
29771
+ "name": "arrow",
29772
+ "global": false,
29773
+ "description": "Display an arrow alongside the popover.",
29774
+ "tags": [
29775
+ {
29776
+ "name": "defaultValue",
29777
+ "text": "false"
29778
+ }
29779
+ ],
29780
+ "required": false,
29781
+ "type": "boolean | Omit<PopoverArrowProps, \"as\" | \"asChild\"> | undefined",
29782
+ "schema": {
29783
+ "kind": "enum",
29784
+ "type": "boolean | Omit<PopoverArrowProps, \"as\" | \"asChild\"> | undefined",
29785
+ "schema": {
29786
+ "0": "undefined",
29787
+ "1": "false",
29788
+ "2": "true",
29789
+ "3": "Omit<PopoverArrowProps, \"as\" | \"asChild\">"
29790
+ }
29791
+ }
29792
+ },
29793
+ {
29794
+ "name": "portal",
29795
+ "global": false,
29796
+ "description": "Render the popover in a portal.",
29797
+ "tags": [
29798
+ {
29799
+ "name": "defaultValue",
29800
+ "text": "true"
29801
+ }
29802
+ ],
29803
+ "required": false,
29804
+ "type": "boolean | undefined",
29805
+ "schema": {
29806
+ "kind": "enum",
29807
+ "type": "boolean | undefined",
29808
+ "schema": {
29809
+ "0": "undefined",
29810
+ "1": "false",
29811
+ "2": "true"
29812
+ }
29813
+ },
29814
+ "default": "true"
29815
+ },
29816
+ {
29817
+ "name": "dismissible",
29818
+ "global": false,
29819
+ "description": "When `false`, the popover will not close when clicking outside or pressing escape.",
29820
+ "tags": [
29821
+ {
29822
+ "name": "defaultValue",
29823
+ "text": "true"
29824
+ }
29825
+ ],
29826
+ "required": false,
29827
+ "type": "boolean | undefined",
29828
+ "schema": {
29829
+ "kind": "enum",
29830
+ "type": "boolean | undefined",
29831
+ "schema": {
29832
+ "0": "undefined",
29833
+ "1": "false",
29834
+ "2": "true"
29835
+ }
29836
+ },
29837
+ "default": "true"
29838
+ },
29839
+ {
29840
+ "name": "b24ui",
29841
+ "global": false,
29842
+ "description": "",
29843
+ "tags": [],
29844
+ "required": false,
29845
+ "type": "Partial<{ content: string; arrow: string; }> | undefined",
29846
+ "schema": {
29847
+ "kind": "enum",
29848
+ "type": "Partial<{ content: string; arrow: string; }> | undefined",
29849
+ "schema": {
29850
+ "0": "undefined",
29851
+ "1": "Partial<{ content: string; arrow: string; }>"
29852
+ }
29853
+ }
29854
+ },
29855
+ {
29856
+ "name": "defaultOpen",
29857
+ "global": false,
29858
+ "description": "The open state of the popover when it is initially rendered. Use when you do not need to control its open state.",
29859
+ "tags": [],
29860
+ "required": false,
29861
+ "type": "boolean | undefined",
29862
+ "schema": {
29863
+ "kind": "enum",
29864
+ "type": "boolean | undefined",
29865
+ "schema": {
29866
+ "0": "undefined",
29867
+ "1": "false",
29868
+ "2": "true"
29869
+ }
29870
+ }
29871
+ },
29872
+ {
29873
+ "name": "open",
29874
+ "global": false,
29875
+ "description": "The controlled open state of the popover.",
29876
+ "tags": [],
29877
+ "required": false,
29878
+ "type": "boolean | undefined",
29879
+ "schema": {
29880
+ "kind": "enum",
29881
+ "type": "boolean | undefined",
29882
+ "schema": {
29883
+ "0": "undefined",
29884
+ "1": "false",
29885
+ "2": "true"
29886
+ }
29887
+ }
29888
+ },
29889
+ {
29890
+ "name": "modal",
29891
+ "global": false,
29892
+ "description": "The modality of the popover. When set to true, interaction with outside elements will be disabled and only popover content will be visible to screen readers.",
29893
+ "tags": [
29894
+ {
29895
+ "name": "defaultValue",
29896
+ "text": "false"
29897
+ }
29898
+ ],
29899
+ "required": false,
29900
+ "type": "boolean | undefined",
29901
+ "schema": {
29902
+ "kind": "enum",
29903
+ "type": "boolean | undefined",
29904
+ "schema": {
29905
+ "0": "undefined",
29906
+ "1": "false",
29907
+ "2": "true"
29908
+ }
29909
+ }
29910
+ },
29911
+ {
29912
+ "name": "openDelay",
29913
+ "global": false,
29914
+ "description": "The duration from when the mouse enters the trigger until the hover card opens.",
29915
+ "tags": [],
29916
+ "required": false,
29917
+ "type": "number | undefined",
29918
+ "schema": {
29919
+ "kind": "enum",
29920
+ "type": "number | undefined",
29921
+ "schema": {
29922
+ "0": "undefined",
29923
+ "1": "number"
29924
+ }
29925
+ },
29926
+ "default": "0"
29927
+ },
29928
+ {
29929
+ "name": "closeDelay",
29930
+ "global": false,
29931
+ "description": "The duration from when the mouse leaves the trigger or content until the hover card closes.",
29932
+ "tags": [],
29933
+ "required": false,
29934
+ "type": "number | undefined",
29935
+ "schema": {
29936
+ "kind": "enum",
29937
+ "type": "number | undefined",
29938
+ "schema": {
29939
+ "0": "undefined",
29940
+ "1": "number"
29941
+ }
29942
+ },
29943
+ "default": "0"
29944
+ }
29945
+ ],
29946
+ "slots": [
29947
+ {
29948
+ "name": "default",
29949
+ "type": "{ open: boolean; }",
29950
+ "description": "",
29951
+ "schema": {
29952
+ "kind": "object",
29953
+ "type": "{ open: boolean; }",
29954
+ "schema": {
29955
+ "open": {
29956
+ "name": "open",
29957
+ "global": false,
29958
+ "description": "",
29959
+ "tags": [],
29960
+ "required": true,
29961
+ "type": "boolean",
29962
+ "schema": {
29963
+ "kind": "enum",
29964
+ "type": "boolean",
29965
+ "schema": {
29966
+ "0": "false",
29967
+ "1": "true"
29968
+ }
29969
+ }
29970
+ }
29971
+ }
29972
+ }
29973
+ },
29974
+ {
29975
+ "name": "content",
29976
+ "type": "{} | undefined",
29977
+ "description": "",
29978
+ "schema": {
29979
+ "kind": "enum",
29980
+ "type": "{} | undefined",
29981
+ "schema": {
29982
+ "0": "undefined",
29983
+ "1": {
29984
+ "kind": "object",
29985
+ "type": "{}",
29986
+ "schema": {}
29987
+ }
29988
+ }
29989
+ }
29990
+ }
29991
+ ],
29992
+ "events": [],
29993
+ "exposed": []
29994
+ }
29995
+ },
29698
29996
  "B24Progress": {
29699
29997
  "mode": "all",
29700
29998
  "prefetch": false,