@haiilo/catalyst 0.15.0 → 0.15.1

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.
@@ -112,9 +112,13 @@ export declare class CatSelectRemote {
112
112
  * Emitted when the value is changed.
113
113
  */
114
114
  catChange: EventEmitter;
115
+ /**
116
+ * Emitted when the select loses the focus.
117
+ */
118
+ catBlur: EventEmitter<FocusEvent>;
115
119
  componentDidLoad(): void;
116
120
  componentWillRender(): void;
117
- onBlur(): void;
121
+ onBlur(event: FocusEvent): void;
118
122
  onKeyDown(event: KeyboardEvent): void;
119
123
  onKeyUp(event: KeyboardEvent): void;
120
124
  connect(connector: CatSelectRemoteConnector): Promise<void>;
@@ -1510,6 +1510,10 @@ declare namespace LocalJSX {
1510
1510
  * The name of the form control. Submitted with the form as part of a name/value pair.
1511
1511
  */
1512
1512
  "name"?: string;
1513
+ /**
1514
+ * Emitted when the select loses the focus.
1515
+ */
1516
+ "onCatBlur"?: (event: CatSelectRemoteCustomEvent<FocusEvent>) => void;
1513
1517
  /**
1514
1518
  * Emitted when the value is changed.
1515
1519
  */
@@ -3,3 +3,6 @@ export { CatI18nRegistry } from './components/cat-i18n/cat-i18n-registry';
3
3
  export { CatIconRegistry } from './components/cat-icon/cat-icon-registry';
4
4
  export { NotificationsService } from './components/cat-notification/cat-notification';
5
5
  export { CatSelectItem } from './components/cat-select/cat-select';
6
+ export { CatSelectRemoteConnector } from './components/cat-select-remote/cat-select-remote';
7
+ export { RenderInfo } from './components/cat-select-remote/cat-select-remote';
8
+ export { Page } from './components/cat-select-remote/cat-select-remote';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@haiilo/catalyst",
3
- "version": "0.15.0",
3
+ "version": "0.15.1",
4
4
  "description": "Catalyst Design System",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "@floating-ui/dom": "0.4.1",
46
- "@haiilo/catalyst-tokens": "0.15.0",
46
+ "@haiilo/catalyst-tokens": "0.15.1",
47
47
  "@stencil/core": "2.17.0",
48
48
  "autosize": "5.0.1",
49
49
  "autosize-input": "^1.0.2",