@ecmaos/types 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.
@@ -1,5 +1,5 @@
1
1
 
2
2
 
3
- > @ecmaos/types@0.2.1 build /home/archmag0s/code/ecmaos/ecmaos.turbo/core/types
3
+ > @ecmaos/types@0.2.2 build /home/archmag0s/code/ecmaos/ecmaos.turbo/core/types
4
4
  > tsc
5
5
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @ecmaos/types
2
2
 
3
+ ## 0.2.3
4
+
5
+ ### Patch Changes
6
+
7
+ - f5e173c: add code editor app; misc improvements
8
+
3
9
  ## 0.2.2
4
10
 
5
11
  ### Patch Changes
package/dist/windows.d.ts CHANGED
@@ -7,21 +7,9 @@ export type WindowId = string | number;
7
7
  /**
8
8
  * Options for configuring windows
9
9
  */
10
- export interface WindowOptions {
11
- /** Window ID */
12
- id?: WindowId;
13
- /** Window HTML content */
14
- html?: string;
15
- /** Window width */
16
- width?: number;
17
- /** Window height */
18
- height?: number;
19
- /** Whether window is maximized */
20
- maximized?: boolean;
21
- /** Window title */
22
- title?: string;
23
- /** Whether window is modal */
24
- modal?: boolean;
10
+ export interface WindowOptions extends WinBox.Params {
11
+ /** Window icon */
12
+ icon?: URL | string;
25
13
  }
26
14
  /**
27
15
  * Interface for window management functionality
@@ -1 +1 @@
1
- {"version":3,"file":"windows.d.ts","sourceRoot":"","sources":["../windows.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,MAAM,MAAM,QAAQ,CAAA;AAEhC,6BAA6B;AAC7B,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,MAAM,CAAA;AAEtC;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,gBAAgB;IAChB,EAAE,CAAC,EAAE,QAAQ,CAAA;IACb,0BAA0B;IAC1B,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,mBAAmB;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,oBAAoB;IACpB,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,kCAAkC;IAClC,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,mBAAmB;IACnB,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,8BAA8B;IAC9B,KAAK,CAAC,EAAE,OAAO,CAAA;CAChB;AAED;;GAEG;AACH,MAAM,WAAW,OAAO;IACtB;;OAEG;IACH,GAAG,IAAI,gBAAgB,CAAC,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC,CAAA;IAE3C;;;OAGG;IACH,KAAK,CAAC,EAAE,EAAE,QAAQ,GAAG,IAAI,CAAA;IAEzB;;;OAGG;IACH,MAAM,CAAC,OAAO,EAAE,aAAa,GAAG,MAAM,CAAA;IAEtC;;;OAGG;IACH,MAAM,CAAC,OAAO,EAAE,aAAa,GAAG,MAAM,CAAA;IAEtC;;;OAGG;IACH,GAAG,CAAC,EAAE,EAAE,QAAQ,GAAG,MAAM,GAAG,SAAS,CAAA;IAErC;;;OAGG;IACH,MAAM,CAAC,EAAE,EAAE,QAAQ,GAAG,IAAI,CAAA;CAC3B"}
1
+ {"version":3,"file":"windows.d.ts","sourceRoot":"","sources":["../windows.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,MAAM,MAAM,QAAQ,CAAA;AAEhC,6BAA6B;AAC7B,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,MAAM,CAAA;AAEtC;;GAEG;AACH,MAAM,WAAW,aAAc,SAAQ,MAAM,CAAC,MAAM;IAClD,kBAAkB;IAClB,IAAI,CAAC,EAAE,GAAG,GAAG,MAAM,CAAA;CACpB;AAED;;GAEG;AACH,MAAM,WAAW,OAAO;IACtB;;OAEG;IACH,GAAG,IAAI,gBAAgB,CAAC,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC,CAAA;IAE3C;;;OAGG;IACH,KAAK,CAAC,EAAE,EAAE,QAAQ,GAAG,IAAI,CAAA;IAEzB;;;OAGG;IACH,MAAM,CAAC,OAAO,EAAE,aAAa,GAAG,MAAM,CAAA;IAEtC;;;OAGG;IACH,MAAM,CAAC,OAAO,EAAE,aAAa,GAAG,MAAM,CAAA;IAEtC;;;OAGG;IACH,GAAG,CAAC,EAAE,EAAE,QAAQ,GAAG,MAAM,GAAG,SAAS,CAAA;IAErC;;;OAGG;IACH,MAAM,CAAC,EAAE,EAAE,QAAQ,GAAG,IAAI,CAAA;CAC3B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecmaos/types",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Type definitions for ecmaOS",
5
5
  "author": "Jay Mathis",
6
6
  "license": "MIT+Apache-2.0",
package/windows.ts CHANGED
@@ -10,21 +10,9 @@ export type WindowId = string | number
10
10
  /**
11
11
  * Options for configuring windows
12
12
  */
13
- export interface WindowOptions {
14
- /** Window ID */
15
- id?: WindowId
16
- /** Window HTML content */
17
- html?: string
18
- /** Window width */
19
- width?: number
20
- /** Window height */
21
- height?: number
22
- /** Whether window is maximized */
23
- maximized?: boolean
24
- /** Window title */
25
- title?: string
26
- /** Whether window is modal */
27
- modal?: boolean
13
+ export interface WindowOptions extends WinBox.Params {
14
+ /** Window icon */
15
+ icon?: URL | string
28
16
  }
29
17
 
30
18
  /**