@exmg/exm-chip-input 1.0.4 → 1.0.6-alpha.12

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.
@@ -0,0 +1,4 @@
1
+ export { ExmChipInput } from './exm-chip-input.js';
2
+ export { ExmChip } from './exm-chip.js';
3
+ export { ExmChipInputDropdown } from './exm-chip-input-dropdown.js';
4
+ export { style as chipInputStyles } from './styles/exm-chip-input-css.js';
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ export { ExmChipInput } from './exm-chip-input.js';
2
+ export { ExmChip } from './exm-chip.js';
3
+ export { ExmChipInputDropdown } from './exm-chip-input-dropdown.js';
4
+ export { style as chipInputStyles } from './styles/exm-chip-input-css.js';
5
+ //# sourceMappingURL=index.js.map
@@ -1,2 +1 @@
1
1
  export declare const style: import("lit").CSSResult;
2
- export default style;
@@ -0,0 +1,20 @@
1
+ import { css } from 'lit';
2
+ export const style = css `
3
+ :host {
4
+ display: block;
5
+ }
6
+
7
+ .label {
8
+ display: block;
9
+ font-size: 1rem;
10
+ font-weight: 500;
11
+ margin-bottom: 0.5rem;
12
+ }
13
+
14
+ .items {
15
+ display: flex;
16
+ flex-wrap: wrap;
17
+ gap: 0.3rem;
18
+ }
19
+ `;
20
+ //# sourceMappingURL=exm-chip-input-css.js.map
@@ -1,2 +1 @@
1
1
  export declare const style: import("lit").CSSResult;
2
- export default style;
@@ -0,0 +1,30 @@
1
+ import { css } from 'lit';
2
+ export const style = css `
3
+ :host {
4
+ display: block;
5
+ }
6
+
7
+ .label {
8
+ display: block;
9
+ font-size: 1rem;
10
+ font-weight: 500;
11
+ margin-bottom: 0.5rem;
12
+ }
13
+
14
+ .add {
15
+ display: flex;
16
+ align-items: center;
17
+ margin-top: 0.5rem;
18
+ }
19
+
20
+ .input-container {
21
+ position: relative;
22
+ }
23
+
24
+ .selected-chips {
25
+ display: flex;
26
+ flex-wrap: wrap;
27
+ gap: 0.3rem;
28
+ }
29
+ `;
30
+ //# sourceMappingURL=exm-chip-input-dropdown-css.js.map
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@exmg/exm-chip-input",
3
- "version": "1.0.4",
3
+ "version": "1.0.6-alpha.12+33e1367",
4
4
  "type": "module",
5
- "main": "index.js",
6
- "module": "index.js",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.js",
7
7
  "exports": {
8
- ".": "./index.js",
9
- "./exm-chip-input.js": "./src/exm-chip-input.js",
10
- "./exm-chip-input-dropdown.js": "./src/exm-chip-input-dropdown.js",
11
- "./exm-chip.js": "./src/exm-chip.js"
8
+ ".": "./dist/index.js",
9
+ "./exm-chip-input.js": "./dist/exm-chip-input.js",
10
+ "./exm-chip-input-dropdown.js": "./dist/exm-chip-input-dropdown.js",
11
+ "./exm-chip.js": "./dist/exm-chip.js"
12
12
  },
13
13
  "dependencies": {
14
14
  "@exmg/lit-base": "^3.0.0",
@@ -30,18 +30,16 @@
30
30
  "**/*.js",
31
31
  "**/*.d.ts"
32
32
  ],
33
- "homepage": "https://github.com/exmg/exmachina-web-components",
33
+ "homepage": "https://bitbucket.org/exmachina/exm-web-components",
34
34
  "repository": {
35
35
  "type": "git",
36
- "url": "git@github.com:exmg/exm-web-components.git",
36
+ "url": "git@bitbucket.org:exmachina/exm-web-components.git",
37
37
  "directory": "packages/exm-chip-input"
38
38
  },
39
39
  "license": "MIT",
40
- "scripts": {
41
- "build:styles": "exmg-lit-cli sass -f \"./**/*.scss\""
42
- },
40
+ "scripts": {},
43
41
  "publishConfig": {
44
42
  "access": "public"
45
43
  },
46
- "gitHead": "8504f0aac4737b66d3eb579953c45b56a110cb91"
44
+ "gitHead": "33e1367329dfae6f98f21c981edb7ada370fc0d5"
47
45
  }
package/index.d.ts DELETED
@@ -1,4 +0,0 @@
1
- export { ExmChipInput } from './src/exm-chip-input.js';
2
- export { ExmChip } from './src/exm-chip.js';
3
- export { ExmChipInputDropdown } from './src/exm-chip-input-dropdown.js';
4
- export { style as chipInputStyles } from './src/styles/exm-chip-input-css.js';
package/index.js DELETED
@@ -1,5 +0,0 @@
1
- export { ExmChipInput } from './src/exm-chip-input.js';
2
- export { ExmChip } from './src/exm-chip.js';
3
- export { ExmChipInputDropdown } from './src/exm-chip-input-dropdown.js';
4
- export { style as chipInputStyles } from './src/styles/exm-chip-input-css.js';
5
- //# sourceMappingURL=index.js.map
@@ -1,4 +0,0 @@
1
- import { css } from 'lit';
2
- export const style = css `:host{display:block}.label{display:block;font-size:1rem;font-weight:500;margin-bottom:.5rem}.items{display:flex;flex-wrap:wrap;gap:.3rem}`;
3
- export default style;
4
- //# sourceMappingURL=exm-chip-input-css.js.map
@@ -1,4 +0,0 @@
1
- import { css } from 'lit';
2
- export const style = css `:host{display:block}.label{display:block;font-size:1rem;font-weight:500;margin-bottom:.5rem}.add{display:flex;align-items:center;margin-top:.5rem}.input-container{position:relative}.selected-chips{display:flex;flex-wrap:wrap;gap:.3rem}`;
3
- export default style;
4
- //# sourceMappingURL=exm-chip-input-dropdown-css.js.map
@@ -1,26 +0,0 @@
1
- :host {
2
- display: block;
3
- }
4
-
5
- .label {
6
- display: block;
7
- font-size: 1rem;
8
- font-weight: 500;
9
- margin-bottom: 0.5rem;
10
- }
11
-
12
- .add {
13
- display: flex;
14
- align-items: center;
15
- margin-top: 0.5rem;
16
- }
17
-
18
- .input-container {
19
- position: relative;
20
- }
21
-
22
- .selected-chips {
23
- display: flex;
24
- flex-wrap: wrap;
25
- gap: 0.3rem;
26
- }
@@ -1,16 +0,0 @@
1
- :host {
2
- display: block;
3
- }
4
-
5
- .label {
6
- display: block;
7
- font-size: 1rem;
8
- font-weight: 500;
9
- margin-bottom: 0.5rem;
10
- }
11
-
12
- .items {
13
- display: flex;
14
- flex-wrap: wrap;
15
- gap: 0.3rem;
16
- }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes