@exmg/exm-search 1.0.0 → 1.0.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.
package/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export { ExmgSearch } from './src/exm-search.js';
2
- export { ExmgSearchBase } from './src/exm-search-base.js';
1
+ export { ExmSearch } from './src/exm-search.js';
2
+ export { ExmSearchBase } from './src/exm-search-base.js';
3
3
  export { style as exmgSearchStyles } from './src/styles/exm-search-css.js';
package/index.js CHANGED
@@ -1,4 +1,4 @@
1
- export { ExmgSearch } from './src/exm-search.js';
2
- export { ExmgSearchBase } from './src/exm-search-base.js';
1
+ export { ExmSearch } from './src/exm-search.js';
2
+ export { ExmSearchBase } from './src/exm-search-base.js';
3
3
  export { style as exmgSearchStyles } from './src/styles/exm-search-css.js';
4
4
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exmg/exm-search",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -40,5 +40,5 @@
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "0907b55c89325d59902b98a64c352bf6e1fc81ff"
43
+ "gitHead": "8e971cbad07fa6fab5a95aefd915937b752d2204"
44
44
  }
@@ -2,7 +2,7 @@ import { ExmgElement } from '@exmg/lit-base';
2
2
  import '@material/web/icon/icon.js';
3
3
  import '@material/web/iconbutton/icon-button.js';
4
4
  import '@material/web/focus/md-focus-ring.js';
5
- export declare class ExmgSearchBase extends ExmgElement {
5
+ export declare class ExmSearchBase extends ExmgElement {
6
6
  bubbles: boolean;
7
7
  _hasFocus: boolean;
8
8
  filterValue?: string | null;
@@ -6,7 +6,7 @@ import { classMap } from 'lit/directives/class-map.js';
6
6
  import '@material/web/icon/icon.js';
7
7
  import '@material/web/iconbutton/icon-button.js';
8
8
  import '@material/web/focus/md-focus-ring.js';
9
- export class ExmgSearchBase extends ExmgElement {
9
+ export class ExmSearchBase extends ExmgElement {
10
10
  constructor() {
11
11
  super();
12
12
  this.bubbles = false;
@@ -104,14 +104,14 @@ export class ExmgSearchBase extends ExmgElement {
104
104
  }
105
105
  __decorate([
106
106
  state()
107
- ], ExmgSearchBase.prototype, "_hasFocus", void 0);
107
+ ], ExmSearchBase.prototype, "_hasFocus", void 0);
108
108
  __decorate([
109
109
  property({ type: String })
110
- ], ExmgSearchBase.prototype, "filterValue", void 0);
110
+ ], ExmSearchBase.prototype, "filterValue", void 0);
111
111
  __decorate([
112
112
  property({ type: String })
113
- ], ExmgSearchBase.prototype, "placeHolder", void 0);
113
+ ], ExmSearchBase.prototype, "placeHolder", void 0);
114
114
  __decorate([
115
115
  query('#searchInput')
116
- ], ExmgSearchBase.prototype, "search", void 0);
116
+ ], ExmSearchBase.prototype, "search", void 0);
117
117
  //# sourceMappingURL=exm-search-base.js.map
@@ -1,10 +1,10 @@
1
1
  import '@material/web/progress/circular-progress.js';
2
- import { ExmgSearchBase } from './exm-search-base.js';
3
- export declare class ExmgSearch extends ExmgSearchBase {
2
+ import { ExmSearchBase } from './exm-search-base.js';
3
+ export declare class ExmSearch extends ExmSearchBase {
4
4
  static styles: import("lit").CSSResult[];
5
5
  }
6
6
  declare global {
7
7
  interface HTMLElementTagNameMap {
8
- 'exm-search': ExmgSearch;
8
+ 'exm-search': ExmSearch;
9
9
  }
10
10
  }
package/src/exm-search.js CHANGED
@@ -1,13 +1,13 @@
1
1
  import { __decorate } from "tslib";
2
2
  import { customElement } from 'lit/decorators/custom-element.js';
3
3
  import '@material/web/progress/circular-progress.js';
4
- import { ExmgSearchBase } from './exm-search-base.js';
4
+ import { ExmSearchBase } from './exm-search-base.js';
5
5
  import { style } from './styles/exm-search-css.js';
6
- let ExmgSearch = class ExmgSearch extends ExmgSearchBase {
6
+ let ExmSearch = class ExmSearch extends ExmSearchBase {
7
7
  };
8
- ExmgSearch.styles = [style];
9
- ExmgSearch = __decorate([
8
+ ExmSearch.styles = [style];
9
+ ExmSearch = __decorate([
10
10
  customElement('exm-search')
11
- ], ExmgSearch);
12
- export { ExmgSearch };
11
+ ], ExmSearch);
12
+ export { ExmSearch };
13
13
  //# sourceMappingURL=exm-search.js.map