@digital-realty/ix-select 1.0.8 → 1.0.9
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/dist/ix-select.d.ts +4 -1
- package/dist/ix-select.js +10 -1
- package/dist/ix-select.js.map +1 -1
- package/package.json +3 -3
package/dist/ix-select.d.ts
CHANGED
package/dist/ix-select.js
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
import { css } from 'lit';
|
|
1
2
|
import { IxSelect } from './IxSelect.js';
|
|
2
|
-
|
|
3
|
+
export class IxSelectStyled extends IxSelect {
|
|
4
|
+
}
|
|
5
|
+
IxSelectStyled.styles = css `
|
|
6
|
+
.select {
|
|
7
|
+
display: block;
|
|
8
|
+
min-width: 0;
|
|
9
|
+
}
|
|
10
|
+
`;
|
|
11
|
+
window.customElements.define('ix-select', IxSelectStyled);
|
|
3
12
|
//# sourceMappingURL=ix-select.js.map
|
package/dist/ix-select.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ix-select.js","sourceRoot":"","sources":["../src/ix-select.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzC,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"ix-select.js","sourceRoot":"","sources":["../src/ix-select.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,MAAM,KAAK,CAAC;AAC1B,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAEzC,MAAM,OAAO,cAAe,SAAQ,QAAQ;;AAC1B,qBAAM,GAAG,GAAG,CAAA;;;;;GAK3B,CAAC;AAGJ,MAAM,CAAC,cAAc,CAAC,MAAM,CAAC,WAAW,EAAE,cAAc,CAAC,CAAC","sourcesContent":["import { css } from 'lit';\nimport { IxSelect } from './IxSelect.js';\n\nexport class IxSelectStyled extends IxSelect {\n static override styles = css`\n .select {\n display: block;\n min-width: 0;\n }\n `;\n}\n\nwindow.customElements.define('ix-select', IxSelectStyled);\n"]}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Webcomponent ix-select following open-wc recommendations",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "interxion",
|
|
6
|
-
"version": "1.0.
|
|
6
|
+
"version": "1.0.9",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"module": "dist/index.js",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"storybook:build": "tsc && npm run analyze -- --exclude dist && build-storybook"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@digital-realty/ix-icon": "
|
|
33
|
+
"@digital-realty/ix-icon": "^0.0.3",
|
|
34
34
|
"@lit-labs/react": "^2.0.3",
|
|
35
35
|
"@material/web": "^1.0.0",
|
|
36
36
|
"lit": "^2.0.2",
|
|
@@ -104,5 +104,5 @@
|
|
|
104
104
|
"README.md",
|
|
105
105
|
"LICENSE"
|
|
106
106
|
],
|
|
107
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "ed23dcb034e9d2a56ba58c27d995a737442e66ea"
|
|
108
108
|
}
|