@difizen/libro-core 0.3.26 → 0.3.28

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.
@@ -41,21 +41,16 @@ export declare class LibroCellView extends BaseView implements CellView {
41
41
  toJSON(): LibroCell;
42
42
  toJSONWithoutId: () => {
43
43
  [x: string]: import("@difizen/libro-common").PartialJSONValue | undefined;
44
- metadata: Partial<import("./libro-cell-protocol.js").LibroCellMetadata>;
45
- cell_type: string;
44
+ id?: string | undefined;
45
+ cell_type: "raw";
46
+ metadata: Partial<import("@difizen/libro-common").IRawCellMetadata>;
47
+ attachments?: import("@difizen/libro-common").IAttachments | undefined;
46
48
  source: import("@difizen/libro-common").MultilineString;
47
49
  } | {
48
50
  [x: string]: import("@difizen/libro-common").PartialJSONValue | undefined;
49
51
  cell_type: string;
50
52
  source: import("@difizen/libro-common").MultilineString;
51
53
  metadata: Partial<import("@difizen/libro-common").ICellMetadata>;
52
- } | {
53
- [x: string]: import("@difizen/libro-common").PartialJSONValue | undefined;
54
- id?: string | undefined;
55
- cell_type: "raw";
56
- metadata: Partial<import("@difizen/libro-common").IRawCellMetadata>;
57
- attachments?: import("@difizen/libro-common").IAttachments | undefined;
58
- source: import("@difizen/libro-common").MultilineString;
59
54
  } | {
60
55
  [x: string]: import("@difizen/libro-common").PartialJSONValue | undefined;
61
56
  id?: string | undefined;
@@ -71,6 +66,11 @@ export declare class LibroCellView extends BaseView implements CellView {
71
66
  outputs: import("@difizen/libro-common").IOutput[];
72
67
  execution_count: import("@difizen/libro-common").ExecutionCount;
73
68
  source: import("@difizen/libro-common").MultilineString;
69
+ } | {
70
+ [x: string]: import("@difizen/libro-common").PartialJSONValue | undefined;
71
+ metadata: Partial<import("./libro-cell-protocol.js").LibroCellMetadata>;
72
+ cell_type: string;
73
+ source: import("@difizen/libro-common").MultilineString;
74
74
  };
75
75
  }
76
76
  //# sourceMappingURL=libro-cell-view.d.ts.map
package/es/index.less CHANGED
@@ -784,6 +784,7 @@
784
784
  font-size: 14px;
785
785
  font-family: PingFangSC;
786
786
  line-height: 22px;
787
+ white-space: nowrap;
787
788
  }
788
789
 
789
790
  .libro-tooltip-keybind {
@@ -42,7 +42,7 @@ export declare class LibroViewTracker {
42
42
  isEnabledSpmReporter: boolean;
43
43
  protected onTrackerEmitter: Emitter<Record<string, any>>;
44
44
  get onTracker(): import("@difizen/mana-app").Event<Record<string, any>>;
45
- getOrCreateTrackers(options: Options): ITracker | FpsTracker | Tracker;
45
+ getOrCreateTrackers(options: Options): ITracker | Tracker | FpsTracker;
46
46
  tracker(tracker: ITracker): void;
47
47
  hasTracker(id: string): boolean;
48
48
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@difizen/libro-core",
3
- "version": "0.3.26",
3
+ "version": "0.3.28",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "libro",
@@ -34,10 +34,10 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@ant-design/icons": "^5.1.0",
37
- "@difizen/libro-code-editor": "^0.3.26",
38
- "@difizen/libro-common": "^0.3.26",
39
- "@difizen/libro-shared-model": "^0.3.26",
40
- "@difizen/libro-virtualized": "^0.3.26",
37
+ "@difizen/libro-code-editor": "^0.3.28",
38
+ "@difizen/libro-common": "^0.3.28",
39
+ "@difizen/libro-shared-model": "^0.3.28",
40
+ "@difizen/libro-virtualized": "^0.3.28",
41
41
  "@difizen/mana-app": "latest",
42
42
  "@difizen/mana-l10n": "latest",
43
43
  "@difizen/mana-react": "latest",
package/src/index.less CHANGED
@@ -784,6 +784,7 @@
784
784
  font-size: 14px;
785
785
  font-family: PingFangSC;
786
786
  line-height: 22px;
787
+ white-space: nowrap;
787
788
  }
788
789
 
789
790
  .libro-tooltip-keybind {