x4js 2.0.26 → 2.0.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.
- package/lib/cjs/x4.css +1 -1
- package/lib/cjs/x4.js +2 -2
- package/lib/esm/x4.css +1 -1
- package/lib/esm/x4.mjs +2 -2
- package/lib/styles/x4.css +1 -1
- package/lib/types/x4js.d.ts +4 -4
- package/package.json +1 -1
- package/src/components/gauge/gauge.module.scss +3 -0
- package/src/components/gauge/gauge.ts +1 -1
- package/src/components/gridview/gridview.ts +2 -2
- package/src/components/input/input.ts +9 -2
- package/src/components/listbox/listbox.ts +2 -3
- package/src/components/propgrid/propgrid.ts +12 -2
- package/src/components/spreadsheet/spreadsheet.module.scss +308 -0
- package/src/components/spreadsheet/spreadsheet.ts +1176 -0
- package/src/core/core_svg.ts +2 -0
package/src/core/core_svg.ts
CHANGED
|
@@ -607,6 +607,8 @@ export class SvgGroup extends SvgItem {
|
|
|
607
607
|
icon.setAttr( 'y', num(y)+'' );
|
|
608
608
|
icon.setAttr( 'width', num(w)+'' );
|
|
609
609
|
icon.setAttr( 'height', num(h)+'' );
|
|
610
|
+
icon.setStyle( 'width', num(w)+'px' );
|
|
611
|
+
icon.setStyle( 'height', num(h)+'px' );
|
|
610
612
|
return this.append( icon );
|
|
611
613
|
}
|
|
612
614
|
|