@girs/atk-1.0 2.50.0-3.2.4 → 2.50.0-3.2.6

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/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/atk-1.0)
6
6
 
7
7
 
8
- GJS TypeScript type definitions for Atk-1.0, generated from library version 2.50.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.4.
8
+ GJS TypeScript type definitions for Atk-1.0, generated from library version 2.50.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.6.
9
9
 
10
10
  ATK provides the set of accessibility interfaces that are implemented by other toolkits and applications. Using the ATK interfaces, accessibility tools have full access to view and control running applications.
11
11
 
@@ -82,6 +82,19 @@ Now you have also type support for this, too:
82
82
  const Atk = imports.gi.Atk;
83
83
  ```
84
84
 
85
+
86
+ ### ESM vs. CommonJS
87
+
88
+ GJS supports two different import syntaxes. The new modern ESM syntax and the old global imports syntax.
89
+
90
+ In TypeScript projects for GJS and GNOME Shell extensions, you have the flexibility to use `ESM` syntax and then decide the import syntax for your bundled file. If your bundler is configured to use `CommonJS`, it will convert to the GJS-specific global imports syntax, like `const moduleName = imports.gi[moduleName]`. This is different from the traditional `require` syntax seen in Node.js. The global imports syntax is chosen because it aligns with the CommonJS format supported by NPM, which is used for the generated type definitions and this package.
91
+
92
+ On the other hand, if you configure your bundler to use ESM, it will retain the ESM import syntax. It's crucial to ensure that your bundler is set up to correctly translate and bundle these imports into either CommonJS or ESM format, depending on your project's requirements.
93
+
94
+ This approach is particularly important due to the `@girs` types, which include both `*.cjs `files, using the GJS global imports syntax, and `*.js` files, which utilize the ESM syntax. By appropriately setting up your bundler, you can control which syntax—CommonJS or ESM—is used in your project. The choice of CommonJS in this context is also due to the similarity between the GJS-specific global imports and CommonJS syntax, allowing for easier management and bundling in these specific types of projects.
95
+
96
+ Since GNOME Shell 45, you should only use ESM, even for GNOME Shell extensions. Before that, extensions had to use the global import syntax, unlike normal GJS applications, where ESM has been available for some time.
97
+
85
98
  ### Bundle
86
99
 
87
100
  Depending on your project configuration, it is recommended to use a bundler like [esbuild](https://esbuild.github.io/). You can find examples using different bundlers [here](https://github.com/gjsify/ts-for-gir/tree/main/examples).
@@ -1,5 +1,4 @@
1
1
 
2
-
3
2
  declare module 'gi://Atk?version=1.0' {
4
3
  import Atk10 from '@girs/atk-1.0';
5
4
  export default Atk10;
@@ -1,5 +1,4 @@
1
1
 
2
-
3
2
  import Atk10 from '@girs/atk-1.0';
4
3
 
5
4
  declare global {
package/atk-1.0.d.cts CHANGED
@@ -3951,6 +3951,9 @@ export interface TableCell extends Object {
3951
3951
  connect(sigName: "notify::accessible-name", callback: (($obj: TableCell, pspec: GObject.ParamSpec) => void)): number
3952
3952
  connect_after(sigName: "notify::accessible-name", callback: (($obj: TableCell, pspec: GObject.ParamSpec) => void)): number
3953
3953
  emit(sigName: "notify::accessible-name", ...args: any[]): void
3954
+ connect(sigName: "notify::accessible-parent", callback: (($obj: TableCell, pspec: GObject.ParamSpec) => void)): number
3955
+ connect_after(sigName: "notify::accessible-parent", callback: (($obj: TableCell, pspec: GObject.ParamSpec) => void)): number
3956
+ emit(sigName: "notify::accessible-parent", ...args: any[]): void
3954
3957
  connect(sigName: "notify::accessible-role", callback: (($obj: TableCell, pspec: GObject.ParamSpec) => void)): number
3955
3958
  connect_after(sigName: "notify::accessible-role", callback: (($obj: TableCell, pspec: GObject.ParamSpec) => void)): number
3956
3959
  emit(sigName: "notify::accessible-role", ...args: any[]): void
@@ -5105,6 +5108,9 @@ export interface Window extends Object {
5105
5108
  connect(sigName: "notify::accessible-name", callback: (($obj: Window, pspec: GObject.ParamSpec) => void)): number
5106
5109
  connect_after(sigName: "notify::accessible-name", callback: (($obj: Window, pspec: GObject.ParamSpec) => void)): number
5107
5110
  emit(sigName: "notify::accessible-name", ...args: any[]): void
5111
+ connect(sigName: "notify::accessible-parent", callback: (($obj: Window, pspec: GObject.ParamSpec) => void)): number
5112
+ connect_after(sigName: "notify::accessible-parent", callback: (($obj: Window, pspec: GObject.ParamSpec) => void)): number
5113
+ emit(sigName: "notify::accessible-parent", ...args: any[]): void
5108
5114
  connect(sigName: "notify::accessible-role", callback: (($obj: Window, pspec: GObject.ParamSpec) => void)): number
5109
5115
  connect_after(sigName: "notify::accessible-role", callback: (($obj: Window, pspec: GObject.ParamSpec) => void)): number
5110
5116
  emit(sigName: "notify::accessible-role", ...args: any[]): void
@@ -5201,6 +5207,9 @@ export interface GObjectAccessible {
5201
5207
  connect(sigName: "notify::accessible-name", callback: (($obj: GObjectAccessible, pspec: GObject.ParamSpec) => void)): number
5202
5208
  connect_after(sigName: "notify::accessible-name", callback: (($obj: GObjectAccessible, pspec: GObject.ParamSpec) => void)): number
5203
5209
  emit(sigName: "notify::accessible-name", ...args: any[]): void
5210
+ connect(sigName: "notify::accessible-parent", callback: (($obj: GObjectAccessible, pspec: GObject.ParamSpec) => void)): number
5211
+ connect_after(sigName: "notify::accessible-parent", callback: (($obj: GObjectAccessible, pspec: GObject.ParamSpec) => void)): number
5212
+ emit(sigName: "notify::accessible-parent", ...args: any[]): void
5204
5213
  connect(sigName: "notify::accessible-role", callback: (($obj: GObjectAccessible, pspec: GObject.ParamSpec) => void)): number
5205
5214
  connect_after(sigName: "notify::accessible-role", callback: (($obj: GObjectAccessible, pspec: GObject.ParamSpec) => void)): number
5206
5215
  emit(sigName: "notify::accessible-role", ...args: any[]): void
@@ -5286,12 +5295,19 @@ export interface Hyperlink extends Action {
5286
5295
  // Own properties of Atk-1.0.Atk.Hyperlink
5287
5296
 
5288
5297
  readonly end_index: number
5298
+ readonly endIndex: number
5289
5299
  readonly number_of_anchors: number
5300
+ readonly numberOfAnchors: number
5290
5301
  /**
5291
5302
  * Selected link
5292
5303
  */
5293
5304
  readonly selected_link: boolean
5305
+ /**
5306
+ * Selected link
5307
+ */
5308
+ readonly selectedLink: boolean
5294
5309
  readonly start_index: number
5310
+ readonly startIndex: number
5295
5311
 
5296
5312
  // Own fields of Atk-1.0.Atk.Hyperlink
5297
5313
 
@@ -5759,6 +5775,9 @@ export interface NoOpObject extends Action, Component, Document, EditableText, H
5759
5775
  connect(sigName: "notify::accessible-name", callback: (($obj: NoOpObject, pspec: GObject.ParamSpec) => void)): number
5760
5776
  connect_after(sigName: "notify::accessible-name", callback: (($obj: NoOpObject, pspec: GObject.ParamSpec) => void)): number
5761
5777
  emit(sigName: "notify::accessible-name", ...args: any[]): void
5778
+ connect(sigName: "notify::accessible-parent", callback: (($obj: NoOpObject, pspec: GObject.ParamSpec) => void)): number
5779
+ connect_after(sigName: "notify::accessible-parent", callback: (($obj: NoOpObject, pspec: GObject.ParamSpec) => void)): number
5780
+ emit(sigName: "notify::accessible-parent", ...args: any[]): void
5762
5781
  connect(sigName: "notify::accessible-role", callback: (($obj: NoOpObject, pspec: GObject.ParamSpec) => void)): number
5763
5782
  connect_after(sigName: "notify::accessible-role", callback: (($obj: NoOpObject, pspec: GObject.ParamSpec) => void)): number
5764
5783
  emit(sigName: "notify::accessible-role", ...args: any[]): void
@@ -5985,6 +6004,36 @@ export module Object {
5985
6004
  * Numeric value of this object, in case being and AtkValue.
5986
6005
  */
5987
6006
  accessible_value?: number | null
6007
+ accessibleDescription?: string | null
6008
+ accessibleName?: string | null
6009
+ accessibleParent?: Object | null
6010
+ accessibleRole?: Role | null
6011
+ /**
6012
+ * Table caption.
6013
+ */
6014
+ accessibleTableCaption?: string | null
6015
+ accessibleTableCaptionObject?: Object | null
6016
+ /**
6017
+ * Accessible table column description.
6018
+ */
6019
+ accessibleTableColumnDescription?: string | null
6020
+ /**
6021
+ * Accessible table column header.
6022
+ */
6023
+ accessibleTableColumnHeader?: Object | null
6024
+ /**
6025
+ * Accessible table row description.
6026
+ */
6027
+ accessibleTableRowDescription?: string | null
6028
+ /**
6029
+ * Accessible table row header.
6030
+ */
6031
+ accessibleTableRowHeader?: Object | null
6032
+ accessibleTableSummary?: Object | null
6033
+ /**
6034
+ * Numeric value of this object, in case being and AtkValue.
6035
+ */
6036
+ accessibleValue?: number | null
5988
6037
  }
5989
6038
 
5990
6039
  }
@@ -5994,37 +6043,70 @@ export interface Object {
5994
6043
  // Own properties of Atk-1.0.Atk.Object
5995
6044
 
5996
6045
  readonly accessible_component_layer: number
6046
+ readonly accessibleComponentLayer: number
5997
6047
  readonly accessible_component_mdi_zorder: number
6048
+ readonly accessibleComponentMdiZorder: number
5998
6049
  accessible_description: string | null
6050
+ accessibleDescription: string | null
5999
6051
  readonly accessible_hypertext_nlinks: number
6052
+ readonly accessibleHypertextNlinks: number
6000
6053
  accessible_name: string | null
6054
+ accessibleName: string | null
6055
+ accessibleParent: Object
6001
6056
  accessible_role: Role
6057
+ accessibleRole: Role
6002
6058
  /**
6003
6059
  * Table caption.
6004
6060
  */
6005
6061
  accessible_table_caption: string | null
6062
+ /**
6063
+ * Table caption.
6064
+ */
6065
+ accessibleTableCaption: string | null
6006
6066
  accessible_table_caption_object: Object
6067
+ accessibleTableCaptionObject: Object
6007
6068
  /**
6008
6069
  * Accessible table column description.
6009
6070
  */
6010
6071
  accessible_table_column_description: string | null
6072
+ /**
6073
+ * Accessible table column description.
6074
+ */
6075
+ accessibleTableColumnDescription: string | null
6011
6076
  /**
6012
6077
  * Accessible table column header.
6013
6078
  */
6014
6079
  accessible_table_column_header: Object
6080
+ /**
6081
+ * Accessible table column header.
6082
+ */
6083
+ accessibleTableColumnHeader: Object
6015
6084
  /**
6016
6085
  * Accessible table row description.
6017
6086
  */
6018
6087
  accessible_table_row_description: string | null
6088
+ /**
6089
+ * Accessible table row description.
6090
+ */
6091
+ accessibleTableRowDescription: string | null
6019
6092
  /**
6020
6093
  * Accessible table row header.
6021
6094
  */
6022
6095
  accessible_table_row_header: Object
6096
+ /**
6097
+ * Accessible table row header.
6098
+ */
6099
+ accessibleTableRowHeader: Object
6023
6100
  accessible_table_summary: Object
6101
+ accessibleTableSummary: Object
6024
6102
  /**
6025
6103
  * Numeric value of this object, in case being and AtkValue.
6026
6104
  */
6027
6105
  accessible_value: number
6106
+ /**
6107
+ * Numeric value of this object, in case being and AtkValue.
6108
+ */
6109
+ accessibleValue: number
6028
6110
 
6029
6111
  // Own fields of Atk-1.0.Atk.Object
6030
6112
 
@@ -6387,6 +6469,9 @@ export interface Object {
6387
6469
  connect(sigName: "notify::accessible-name", callback: (($obj: Object, pspec: GObject.ParamSpec) => void)): number
6388
6470
  connect_after(sigName: "notify::accessible-name", callback: (($obj: Object, pspec: GObject.ParamSpec) => void)): number
6389
6471
  emit(sigName: "notify::accessible-name", ...args: any[]): void
6472
+ connect(sigName: "notify::accessible-parent", callback: (($obj: Object, pspec: GObject.ParamSpec) => void)): number
6473
+ connect_after(sigName: "notify::accessible-parent", callback: (($obj: Object, pspec: GObject.ParamSpec) => void)): number
6474
+ emit(sigName: "notify::accessible-parent", ...args: any[]): void
6390
6475
  connect(sigName: "notify::accessible-role", callback: (($obj: Object, pspec: GObject.ParamSpec) => void)): number
6391
6476
  connect_after(sigName: "notify::accessible-role", callback: (($obj: Object, pspec: GObject.ParamSpec) => void)): number
6392
6477
  emit(sigName: "notify::accessible-role", ...args: any[]): void
@@ -6604,6 +6689,9 @@ export interface Plug extends Component {
6604
6689
  connect(sigName: "notify::accessible-name", callback: (($obj: Plug, pspec: GObject.ParamSpec) => void)): number
6605
6690
  connect_after(sigName: "notify::accessible-name", callback: (($obj: Plug, pspec: GObject.ParamSpec) => void)): number
6606
6691
  emit(sigName: "notify::accessible-name", ...args: any[]): void
6692
+ connect(sigName: "notify::accessible-parent", callback: (($obj: Plug, pspec: GObject.ParamSpec) => void)): number
6693
+ connect_after(sigName: "notify::accessible-parent", callback: (($obj: Plug, pspec: GObject.ParamSpec) => void)): number
6694
+ emit(sigName: "notify::accessible-parent", ...args: any[]): void
6607
6695
  connect(sigName: "notify::accessible-role", callback: (($obj: Plug, pspec: GObject.ParamSpec) => void)): number
6608
6696
  connect_after(sigName: "notify::accessible-role", callback: (($obj: Plug, pspec: GObject.ParamSpec) => void)): number
6609
6697
  emit(sigName: "notify::accessible-role", ...args: any[]): void
@@ -6755,6 +6843,7 @@ export module Relation {
6755
6843
 
6756
6844
  relation_type?: RelationType | null
6757
6845
  target?: GObject.ValueArray | null
6846
+ relationType?: RelationType | null
6758
6847
  }
6759
6848
 
6760
6849
  }
@@ -6764,6 +6853,7 @@ export interface Relation {
6764
6853
  // Own properties of Atk-1.0.Atk.Relation
6765
6854
 
6766
6855
  relation_type: RelationType
6856
+ relationType: RelationType
6767
6857
 
6768
6858
  // Own fields of Atk-1.0.Atk.Relation
6769
6859
 
@@ -7044,6 +7134,9 @@ export interface Socket extends Component {
7044
7134
  connect(sigName: "notify::accessible-name", callback: (($obj: Socket, pspec: GObject.ParamSpec) => void)): number
7045
7135
  connect_after(sigName: "notify::accessible-name", callback: (($obj: Socket, pspec: GObject.ParamSpec) => void)): number
7046
7136
  emit(sigName: "notify::accessible-name", ...args: any[]): void
7137
+ connect(sigName: "notify::accessible-parent", callback: (($obj: Socket, pspec: GObject.ParamSpec) => void)): number
7138
+ connect_after(sigName: "notify::accessible-parent", callback: (($obj: Socket, pspec: GObject.ParamSpec) => void)): number
7139
+ emit(sigName: "notify::accessible-parent", ...args: any[]): void
7047
7140
  connect(sigName: "notify::accessible-role", callback: (($obj: Socket, pspec: GObject.ParamSpec) => void)): number
7048
7141
  connect_after(sigName: "notify::accessible-role", callback: (($obj: Socket, pspec: GObject.ParamSpec) => void)): number
7049
7142
  emit(sigName: "notify::accessible-role", ...args: any[]): void
package/atk-1.0.d.ts CHANGED
@@ -3953,6 +3953,9 @@ interface TableCell extends Object {
3953
3953
  connect(sigName: "notify::accessible-name", callback: (($obj: TableCell, pspec: GObject.ParamSpec) => void)): number
3954
3954
  connect_after(sigName: "notify::accessible-name", callback: (($obj: TableCell, pspec: GObject.ParamSpec) => void)): number
3955
3955
  emit(sigName: "notify::accessible-name", ...args: any[]): void
3956
+ connect(sigName: "notify::accessible-parent", callback: (($obj: TableCell, pspec: GObject.ParamSpec) => void)): number
3957
+ connect_after(sigName: "notify::accessible-parent", callback: (($obj: TableCell, pspec: GObject.ParamSpec) => void)): number
3958
+ emit(sigName: "notify::accessible-parent", ...args: any[]): void
3956
3959
  connect(sigName: "notify::accessible-role", callback: (($obj: TableCell, pspec: GObject.ParamSpec) => void)): number
3957
3960
  connect_after(sigName: "notify::accessible-role", callback: (($obj: TableCell, pspec: GObject.ParamSpec) => void)): number
3958
3961
  emit(sigName: "notify::accessible-role", ...args: any[]): void
@@ -5107,6 +5110,9 @@ interface Window extends Object {
5107
5110
  connect(sigName: "notify::accessible-name", callback: (($obj: Window, pspec: GObject.ParamSpec) => void)): number
5108
5111
  connect_after(sigName: "notify::accessible-name", callback: (($obj: Window, pspec: GObject.ParamSpec) => void)): number
5109
5112
  emit(sigName: "notify::accessible-name", ...args: any[]): void
5113
+ connect(sigName: "notify::accessible-parent", callback: (($obj: Window, pspec: GObject.ParamSpec) => void)): number
5114
+ connect_after(sigName: "notify::accessible-parent", callback: (($obj: Window, pspec: GObject.ParamSpec) => void)): number
5115
+ emit(sigName: "notify::accessible-parent", ...args: any[]): void
5110
5116
  connect(sigName: "notify::accessible-role", callback: (($obj: Window, pspec: GObject.ParamSpec) => void)): number
5111
5117
  connect_after(sigName: "notify::accessible-role", callback: (($obj: Window, pspec: GObject.ParamSpec) => void)): number
5112
5118
  emit(sigName: "notify::accessible-role", ...args: any[]): void
@@ -5203,6 +5209,9 @@ interface GObjectAccessible {
5203
5209
  connect(sigName: "notify::accessible-name", callback: (($obj: GObjectAccessible, pspec: GObject.ParamSpec) => void)): number
5204
5210
  connect_after(sigName: "notify::accessible-name", callback: (($obj: GObjectAccessible, pspec: GObject.ParamSpec) => void)): number
5205
5211
  emit(sigName: "notify::accessible-name", ...args: any[]): void
5212
+ connect(sigName: "notify::accessible-parent", callback: (($obj: GObjectAccessible, pspec: GObject.ParamSpec) => void)): number
5213
+ connect_after(sigName: "notify::accessible-parent", callback: (($obj: GObjectAccessible, pspec: GObject.ParamSpec) => void)): number
5214
+ emit(sigName: "notify::accessible-parent", ...args: any[]): void
5206
5215
  connect(sigName: "notify::accessible-role", callback: (($obj: GObjectAccessible, pspec: GObject.ParamSpec) => void)): number
5207
5216
  connect_after(sigName: "notify::accessible-role", callback: (($obj: GObjectAccessible, pspec: GObject.ParamSpec) => void)): number
5208
5217
  emit(sigName: "notify::accessible-role", ...args: any[]): void
@@ -5288,12 +5297,19 @@ interface Hyperlink extends Action {
5288
5297
  // Own properties of Atk-1.0.Atk.Hyperlink
5289
5298
 
5290
5299
  readonly end_index: number
5300
+ readonly endIndex: number
5291
5301
  readonly number_of_anchors: number
5302
+ readonly numberOfAnchors: number
5292
5303
  /**
5293
5304
  * Selected link
5294
5305
  */
5295
5306
  readonly selected_link: boolean
5307
+ /**
5308
+ * Selected link
5309
+ */
5310
+ readonly selectedLink: boolean
5296
5311
  readonly start_index: number
5312
+ readonly startIndex: number
5297
5313
 
5298
5314
  // Own fields of Atk-1.0.Atk.Hyperlink
5299
5315
 
@@ -5761,6 +5777,9 @@ interface NoOpObject extends Action, Component, Document, EditableText, Hypertex
5761
5777
  connect(sigName: "notify::accessible-name", callback: (($obj: NoOpObject, pspec: GObject.ParamSpec) => void)): number
5762
5778
  connect_after(sigName: "notify::accessible-name", callback: (($obj: NoOpObject, pspec: GObject.ParamSpec) => void)): number
5763
5779
  emit(sigName: "notify::accessible-name", ...args: any[]): void
5780
+ connect(sigName: "notify::accessible-parent", callback: (($obj: NoOpObject, pspec: GObject.ParamSpec) => void)): number
5781
+ connect_after(sigName: "notify::accessible-parent", callback: (($obj: NoOpObject, pspec: GObject.ParamSpec) => void)): number
5782
+ emit(sigName: "notify::accessible-parent", ...args: any[]): void
5764
5783
  connect(sigName: "notify::accessible-role", callback: (($obj: NoOpObject, pspec: GObject.ParamSpec) => void)): number
5765
5784
  connect_after(sigName: "notify::accessible-role", callback: (($obj: NoOpObject, pspec: GObject.ParamSpec) => void)): number
5766
5785
  emit(sigName: "notify::accessible-role", ...args: any[]): void
@@ -5987,6 +6006,36 @@ module Object {
5987
6006
  * Numeric value of this object, in case being and AtkValue.
5988
6007
  */
5989
6008
  accessible_value?: number | null
6009
+ accessibleDescription?: string | null
6010
+ accessibleName?: string | null
6011
+ accessibleParent?: Object | null
6012
+ accessibleRole?: Role | null
6013
+ /**
6014
+ * Table caption.
6015
+ */
6016
+ accessibleTableCaption?: string | null
6017
+ accessibleTableCaptionObject?: Object | null
6018
+ /**
6019
+ * Accessible table column description.
6020
+ */
6021
+ accessibleTableColumnDescription?: string | null
6022
+ /**
6023
+ * Accessible table column header.
6024
+ */
6025
+ accessibleTableColumnHeader?: Object | null
6026
+ /**
6027
+ * Accessible table row description.
6028
+ */
6029
+ accessibleTableRowDescription?: string | null
6030
+ /**
6031
+ * Accessible table row header.
6032
+ */
6033
+ accessibleTableRowHeader?: Object | null
6034
+ accessibleTableSummary?: Object | null
6035
+ /**
6036
+ * Numeric value of this object, in case being and AtkValue.
6037
+ */
6038
+ accessibleValue?: number | null
5990
6039
  }
5991
6040
 
5992
6041
  }
@@ -5996,37 +6045,70 @@ interface Object {
5996
6045
  // Own properties of Atk-1.0.Atk.Object
5997
6046
 
5998
6047
  readonly accessible_component_layer: number
6048
+ readonly accessibleComponentLayer: number
5999
6049
  readonly accessible_component_mdi_zorder: number
6050
+ readonly accessibleComponentMdiZorder: number
6000
6051
  accessible_description: string | null
6052
+ accessibleDescription: string | null
6001
6053
  readonly accessible_hypertext_nlinks: number
6054
+ readonly accessibleHypertextNlinks: number
6002
6055
  accessible_name: string | null
6056
+ accessibleName: string | null
6057
+ accessibleParent: Object
6003
6058
  accessible_role: Role
6059
+ accessibleRole: Role
6004
6060
  /**
6005
6061
  * Table caption.
6006
6062
  */
6007
6063
  accessible_table_caption: string | null
6064
+ /**
6065
+ * Table caption.
6066
+ */
6067
+ accessibleTableCaption: string | null
6008
6068
  accessible_table_caption_object: Object
6069
+ accessibleTableCaptionObject: Object
6009
6070
  /**
6010
6071
  * Accessible table column description.
6011
6072
  */
6012
6073
  accessible_table_column_description: string | null
6074
+ /**
6075
+ * Accessible table column description.
6076
+ */
6077
+ accessibleTableColumnDescription: string | null
6013
6078
  /**
6014
6079
  * Accessible table column header.
6015
6080
  */
6016
6081
  accessible_table_column_header: Object
6082
+ /**
6083
+ * Accessible table column header.
6084
+ */
6085
+ accessibleTableColumnHeader: Object
6017
6086
  /**
6018
6087
  * Accessible table row description.
6019
6088
  */
6020
6089
  accessible_table_row_description: string | null
6090
+ /**
6091
+ * Accessible table row description.
6092
+ */
6093
+ accessibleTableRowDescription: string | null
6021
6094
  /**
6022
6095
  * Accessible table row header.
6023
6096
  */
6024
6097
  accessible_table_row_header: Object
6098
+ /**
6099
+ * Accessible table row header.
6100
+ */
6101
+ accessibleTableRowHeader: Object
6025
6102
  accessible_table_summary: Object
6103
+ accessibleTableSummary: Object
6026
6104
  /**
6027
6105
  * Numeric value of this object, in case being and AtkValue.
6028
6106
  */
6029
6107
  accessible_value: number
6108
+ /**
6109
+ * Numeric value of this object, in case being and AtkValue.
6110
+ */
6111
+ accessibleValue: number
6030
6112
 
6031
6113
  // Own fields of Atk-1.0.Atk.Object
6032
6114
 
@@ -6389,6 +6471,9 @@ interface Object {
6389
6471
  connect(sigName: "notify::accessible-name", callback: (($obj: Object, pspec: GObject.ParamSpec) => void)): number
6390
6472
  connect_after(sigName: "notify::accessible-name", callback: (($obj: Object, pspec: GObject.ParamSpec) => void)): number
6391
6473
  emit(sigName: "notify::accessible-name", ...args: any[]): void
6474
+ connect(sigName: "notify::accessible-parent", callback: (($obj: Object, pspec: GObject.ParamSpec) => void)): number
6475
+ connect_after(sigName: "notify::accessible-parent", callback: (($obj: Object, pspec: GObject.ParamSpec) => void)): number
6476
+ emit(sigName: "notify::accessible-parent", ...args: any[]): void
6392
6477
  connect(sigName: "notify::accessible-role", callback: (($obj: Object, pspec: GObject.ParamSpec) => void)): number
6393
6478
  connect_after(sigName: "notify::accessible-role", callback: (($obj: Object, pspec: GObject.ParamSpec) => void)): number
6394
6479
  emit(sigName: "notify::accessible-role", ...args: any[]): void
@@ -6606,6 +6691,9 @@ interface Plug extends Component {
6606
6691
  connect(sigName: "notify::accessible-name", callback: (($obj: Plug, pspec: GObject.ParamSpec) => void)): number
6607
6692
  connect_after(sigName: "notify::accessible-name", callback: (($obj: Plug, pspec: GObject.ParamSpec) => void)): number
6608
6693
  emit(sigName: "notify::accessible-name", ...args: any[]): void
6694
+ connect(sigName: "notify::accessible-parent", callback: (($obj: Plug, pspec: GObject.ParamSpec) => void)): number
6695
+ connect_after(sigName: "notify::accessible-parent", callback: (($obj: Plug, pspec: GObject.ParamSpec) => void)): number
6696
+ emit(sigName: "notify::accessible-parent", ...args: any[]): void
6609
6697
  connect(sigName: "notify::accessible-role", callback: (($obj: Plug, pspec: GObject.ParamSpec) => void)): number
6610
6698
  connect_after(sigName: "notify::accessible-role", callback: (($obj: Plug, pspec: GObject.ParamSpec) => void)): number
6611
6699
  emit(sigName: "notify::accessible-role", ...args: any[]): void
@@ -6757,6 +6845,7 @@ module Relation {
6757
6845
 
6758
6846
  relation_type?: RelationType | null
6759
6847
  target?: GObject.ValueArray | null
6848
+ relationType?: RelationType | null
6760
6849
  }
6761
6850
 
6762
6851
  }
@@ -6766,6 +6855,7 @@ interface Relation {
6766
6855
  // Own properties of Atk-1.0.Atk.Relation
6767
6856
 
6768
6857
  relation_type: RelationType
6858
+ relationType: RelationType
6769
6859
 
6770
6860
  // Own fields of Atk-1.0.Atk.Relation
6771
6861
 
@@ -7046,6 +7136,9 @@ interface Socket extends Component {
7046
7136
  connect(sigName: "notify::accessible-name", callback: (($obj: Socket, pspec: GObject.ParamSpec) => void)): number
7047
7137
  connect_after(sigName: "notify::accessible-name", callback: (($obj: Socket, pspec: GObject.ParamSpec) => void)): number
7048
7138
  emit(sigName: "notify::accessible-name", ...args: any[]): void
7139
+ connect(sigName: "notify::accessible-parent", callback: (($obj: Socket, pspec: GObject.ParamSpec) => void)): number
7140
+ connect_after(sigName: "notify::accessible-parent", callback: (($obj: Socket, pspec: GObject.ParamSpec) => void)): number
7141
+ emit(sigName: "notify::accessible-parent", ...args: any[]): void
7049
7142
  connect(sigName: "notify::accessible-role", callback: (($obj: Socket, pspec: GObject.ParamSpec) => void)): number
7050
7143
  connect_after(sigName: "notify::accessible-role", callback: (($obj: Socket, pspec: GObject.ParamSpec) => void)): number
7051
7144
  emit(sigName: "notify::accessible-role", ...args: any[]): void
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@girs/atk-1.0",
3
- "version": "2.50.0-3.2.4",
3
+ "version": "2.50.0-3.2.6",
4
4
  "description": "GJS TypeScript type definitions for Atk-1.0, generated from library version 2.50.0",
5
5
  "type": "module",
6
6
  "module": "atk-1.0.js",
@@ -25,9 +25,9 @@
25
25
  "test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit atk-1.0.d.cts"
26
26
  },
27
27
  "dependencies": {
28
- "@girs/gjs": "^3.2.4",
29
- "@girs/glib-2.0": "^2.78.0-3.2.4",
30
- "@girs/gobject-2.0": "^2.78.0-3.2.4"
28
+ "@girs/gjs": "^3.2.6",
29
+ "@girs/glib-2.0": "^2.78.0-3.2.6",
30
+ "@girs/gobject-2.0": "^2.78.0-3.2.6"
31
31
  },
32
32
  "devDependencies": {
33
33
  "typescript": "*"