fake-bpy-module-latest 20260119__py3-none-any.whl → 20260120__py3-none-any.whl

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.
@@ -91,6 +91,10 @@ depsgraph_update_pre: list[collections.abc.Callable[[bpy.types.Scene, None], Non
91
91
  """ on depsgraph update (pre). Accepts two arguments: The scene data-block and the dependency graph being updated
92
92
  """
93
93
 
94
+ exit_pre: list[collections.abc.Callable[[bpy.types.Scene], None]]
95
+ """ just before Blender shuts down, while all data is still valid. Accepts one boolean argument. True indicates either that a user has been using Blender and exited, or that Blender is exiting in a circumstance that should be treated as if that were the case. False indicates that Blender is running in background mode, or is exiting due to failed command line arguments, etc.
96
+ """
97
+
94
98
  frame_change_post: list[collections.abc.Callable[[bpy.types.Scene], None]]
95
99
  """ Called after frame change for playback and rendering, after the data has been evaluated for the new frame. Accepts two arguments: The scene data-block and the dependency graph being updated
96
100
  """
@@ -220,6 +220,13 @@ def autoexec_path_remove(
220
220
  :param index: Index
221
221
  """
222
222
 
223
+ def clear_filter(
224
+ execution_context: int | str | None = None,
225
+ undo: bool | None = None,
226
+ /,
227
+ ) -> None:
228
+ """Clear the search filter"""
229
+
223
230
  def copy_prev(
224
231
  execution_context: int | str | None = None,
225
232
  undo: bool | None = None,
@@ -427,6 +434,13 @@ def script_directory_remove(
427
434
  :param index: Index, Index of the script directory to remove
428
435
  """
429
436
 
437
+ def start_filter(
438
+ execution_context: int | str | None = None,
439
+ undo: bool | None = None,
440
+ /,
441
+ ) -> None:
442
+ """Start entering filter text"""
443
+
430
444
  def studiolight_copy_settings(
431
445
  execution_context: int | str | None = None,
432
446
  undo: bool | None = None,
bpy/types/__init__.pyi CHANGED
@@ -207595,7 +207595,12 @@ class SpacePreferences(Space, bpy_struct):
207595
207595
  filter_type: typing.Literal["NAME", "KEY"]
207596
207596
  """ Filter method"""
207597
207597
 
207598
+ search_filter: str
207599
+ """ Live search filtering string"""
207600
+
207598
207601
  show_region_ui: bool
207602
+ tab_search_results: bool
207603
+ """ Whether or not each visible tab has a search result"""
207599
207604
 
207600
207605
  @classmethod
207601
207606
  def bl_rna_get_subclass(
@@ -214244,6 +214249,7 @@ class ThemeOutliner(bpy_struct):
214244
214249
  class ThemePreferences(bpy_struct):
214245
214250
  """Theme settings for the Blender Preferences"""
214246
214251
 
214252
+ match: mathutils.Color
214247
214253
  space: ThemeSpaceGeneric
214248
214254
  """ Settings for space"""
214249
214255
 
@@ -216439,6 +216445,7 @@ class UILayout(bpy_struct):
216439
216445
  data_highlight: typing.Any = None,
216440
216446
  property_highlight: str = "",
216441
216447
  icon_only: bool | None = False,
216448
+ expand_as: typing.Literal["DEFAULT", "ROW"] | None = "DEFAULT",
216442
216449
  ) -> None:
216443
216450
  """prop_tabs_enum
216444
216451
 
@@ -216447,6 +216454,7 @@ class UILayout(bpy_struct):
216447
216454
  :param data_highlight: Data from which to take highlight property
216448
216455
  :param property_highlight: Identifier of highlight property in data
216449
216456
  :param icon_only: Draw only icons in tabs, no text
216457
+ :param expand_as:
216450
216458
  """
216451
216459
 
216452
216460
  def prop_enum(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fake-bpy-module-latest
3
- Version: 20260119
3
+ Version: 20260120
4
4
  Summary: Collection of the fake Blender Python API module for the code completion.
5
5
  Author: nutti
6
6
  Author-email: nutti.metro@gmail.com
@@ -226,7 +226,7 @@ bmesh/utils/__init__.pyi,sha256=LNxIl4-PECWMRk6rvR7v7_6ipypEVc1-Kx-ujzZxR5M,5531
226
226
  bpy/__init__.pyi,sha256=2c24IZe013Q0UbFSvpU9JKRYusCUwGYTXbNDx17dK5g,490
227
227
  bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
228
228
  bpy/app/__init__.pyi,sha256=QzLt2Ydy0ksVLxYOnDmBohdnTyjYRbhmYCTof7hBFuQ,8919
229
- bpy/app/handlers/__init__.pyi,sha256=vxcj3vFmnFwA2JI8EdkC7ABpZkKNQs5AVadOyAamNe4,8062
229
+ bpy/app/handlers/__init__.pyi,sha256=zxGxU2vUg5Nsn01mFyjXbL1Pf7_O6PeVhmEac4N2X-k,8510
230
230
  bpy/app/icons/__init__.pyi,sha256=3qIiozVL2TnlE1vZotNGuxX5DDrr1PsN6UWJCeUkJ8E,798
231
231
  bpy/app/timers/__init__.pyi,sha256=VuykhQjGUw3Y7i1Ssy0vkBzAAdRJSMwJft4Ml1Fa8-g,1522
232
232
  bpy/app/translations/__init__.pyi,sha256=FjV31T5EUMoe51lpvW_VZr7Db1xyvb5jhGJqKwcT_O0,6511
@@ -284,7 +284,7 @@ bpy/ops/particle/__init__.pyi,sha256=bQAY27lzTiJuuM2KLKPUF0wEs5AwwjVGGYgsMJU1ogA
284
284
  bpy/ops/pointcloud/__init__.pyi,sha256=sobbTqe-GdCpGjgb7Wct0eR75mhweZp9BMsUaL0tgNo,2793
285
285
  bpy/ops/pose/__init__.pyi,sha256=cWUjE15BFBMmRk7_pvD-CnrhB8XdkgzQD-WWMrIpw38,21354
286
286
  bpy/ops/poselib/__init__.pyi,sha256=3_kiwfZWc168J_UV8uOaNthybeKUXrJAUfPb1_Ai1JQ,4431
287
- bpy/ops/preferences/__init__.pyi,sha256=2wPBM6xbPaVFr5ioKWoOZ64XeUUZfjYztPJVmtQv2PQ,14273
287
+ bpy/ops/preferences/__init__.pyi,sha256=1uceZeR4Xunqw6_C70_5YTiq-dRFi0Occedw5bB-1Hk,14574
288
288
  bpy/ops/ptcache/__init__.pyi,sha256=CA2tVqJgrr0bKe1hlfsXyyKuhjd_MFln2tp8rBd-mZ8,1230
289
289
  bpy/ops/render/__init__.pyi,sha256=l-ICt9rdpUJP2fqVh83PMswmiXxzwHO0Kh_KaFvHadg,6181
290
290
  bpy/ops/rigidbody/__init__.pyi,sha256=Jiz2mEGjhBz81pScUCxDhYZnUMS4V-jE1egwXaPZt80,5203
@@ -313,7 +313,7 @@ bpy/path/__init__.pyi,sha256=jgXGlVLUTr15BhcgCVnkz6WlJp4yjpHhJc4TJAXSbsU,4632
313
313
  bpy/props/__init__.pyi,sha256=BFnRoY78kkf6szROPfp4HSETs8yEgMeKE4QeSd2vDrs,41820
314
314
  bpy/stub_internal/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
315
315
  bpy/stub_internal/rna_enums/__init__.pyi,sha256=qwmvb4vKgXjyUx69cDNAssAsbkYCVs1ODFOk4wl9yMY,144112
316
- bpy/types/__init__.pyi,sha256=y-a-n_TEtkkfC4LhVjz_3cmmQWR5xUNMPvsbKTp0_EU,5381461
316
+ bpy/types/__init__.pyi,sha256=1YdFITZxyHUxV_348gy42LVwW0T42-9eCnATeo7TkqA,5381742
317
317
  bpy/utils/__init__.pyi,sha256=z2RE91bnjKGSocTVMkIrZ1HS9Q5UUC_u1eo3Kv1DVzs,13054
318
318
  bpy/utils/previews/__init__.pyi,sha256=ByUvnneVHqE8dr5c1-hYsf-6qaKWdU0KP0IbwA5QN00,2028
319
319
  bpy/utils/units/__init__.pyi,sha256=CbBgOpnx48WP0flNilskhsmA7YCAnbbj07vr3OXlMG8,2214
@@ -379,7 +379,7 @@ rna_keymap_ui/__init__.pyi,sha256=HjNXbu5w-94HLbvVQlEWXV3JVrgWpNz9jiJ3mzGMCNg,48
379
379
  rna_keymap_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
380
380
  rna_prop_ui/__init__.pyi,sha256=Gn7kc9WhI3qPObIz8QiFbjeVIP7GCeF6liywBzIEcnE,1402
381
381
  rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
382
- fake_bpy_module_latest-20260119.dist-info/METADATA,sha256=P0k-mN14bBmz_7R77GbfoeBsWGPlFLT8B4FuBw4wa3Q,7739
383
- fake_bpy_module_latest-20260119.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
384
- fake_bpy_module_latest-20260119.dist-info/top_level.txt,sha256=LGIXuHDoaVTgSTMScq2hvwZRtozSAzYE7RqrFaRqT6o,553
385
- fake_bpy_module_latest-20260119.dist-info/RECORD,,
382
+ fake_bpy_module_latest-20260120.dist-info/METADATA,sha256=q25SfS4cSVPHR3F_E_coZvK3MeR2uzh_DQsQutTGDrc,7739
383
+ fake_bpy_module_latest-20260120.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
384
+ fake_bpy_module_latest-20260120.dist-info/top_level.txt,sha256=LGIXuHDoaVTgSTMScq2hvwZRtozSAzYE7RqrFaRqT6o,553
385
+ fake_bpy_module_latest-20260120.dist-info/RECORD,,