datastake-daf 0.6.166 → 0.6.167

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.
@@ -15271,12 +15271,12 @@ function Widget(_ref) {
15271
15271
  className: "squareIconButton no-min-width",
15272
15272
  icon: /*#__PURE__*/jsxRuntime.jsx(CustomIcon, {
15273
15273
  name: "Filter",
15274
- width: 12,
15275
- height: 12
15274
+ width: 16,
15275
+ height: 16
15276
15276
  }),
15277
15277
  style: {
15278
- height: '25px',
15279
- width: '25px'
15278
+ height: '32px',
15279
+ width: '32px'
15280
15280
  },
15281
15281
  onClick: () => setShowFilters(p => !p)
15282
15282
  })
@@ -15285,17 +15285,17 @@ function Widget(_ref) {
15285
15285
  children: /*#__PURE__*/jsxRuntime.jsx(antd.Button, {
15286
15286
  className: "squareIconButton no-min-width",
15287
15287
  style: {
15288
- height: '25px',
15289
- width: '25px'
15288
+ height: '32px',
15289
+ width: '32px'
15290
15290
  },
15291
15291
  onClick: handleCollapseToggle,
15292
15292
  icon: isCollapsed ? /*#__PURE__*/jsxRuntime.jsx(Icons.RightOutlined, {
15293
15293
  style: {
15294
- width: 12
15294
+ width: 16
15295
15295
  }
15296
15296
  }) : /*#__PURE__*/jsxRuntime.jsx(Icons.DownOutlined, {
15297
15297
  style: {
15298
- width: 12
15298
+ width: 16
15299
15299
  }
15300
15300
  })
15301
15301
  })
@@ -15307,12 +15307,12 @@ function Widget(_ref) {
15307
15307
  children: /*#__PURE__*/jsxRuntime.jsx(antd.Button, {
15308
15308
  className: "squareIconButton no-min-width",
15309
15309
  style: {
15310
- height: '25px',
15311
- width: '25px'
15310
+ height: '32px',
15311
+ width: '32px'
15312
15312
  },
15313
15313
  icon: !isExpanded ? /*#__PURE__*/jsxRuntime.jsx(Icons.RightOutlined, {
15314
15314
  style: {
15315
- width: 10,
15315
+ width: 16,
15316
15316
  paddingTop: "4px"
15317
15317
  }
15318
15318
  }) :
@@ -15321,7 +15321,7 @@ function Widget(_ref) {
15321
15321
  //<MinusOutlined style={{ width: 10 }} />
15322
15322
  jsxRuntime.jsx(Icons.DownOutlined, {
15323
15323
  style: {
15324
- width: 10,
15324
+ width: 16,
15325
15325
  paddingTop: "4px"
15326
15326
  }
15327
15327
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "datastake-daf",
3
- "version": "0.6.166",
3
+ "version": "0.6.167",
4
4
  "dependencies": {
5
5
  "@ant-design/icons": "^5.2.5",
6
6
  "@antv/g2": "^5.1.1",
@@ -99,11 +99,11 @@ export default function Widget({
99
99
  icon={
100
100
  <CustomIcon
101
101
  name="Filter"
102
- width={12}
103
- height={12}
102
+ width={16}
103
+ height={16}
104
104
  />
105
105
  }
106
- style={{height: '25px', width: '25px'}}
106
+ style={{height: '32px', width: '32px'}}
107
107
  onClick={() => setShowFilters((p) => !p)}
108
108
  />
109
109
  </div>
@@ -115,13 +115,13 @@ export default function Widget({
115
115
  <div className="flex justify-content-end">
116
116
  <Button
117
117
  className="squareIconButton no-min-width"
118
- style={{height: '25px', width: '25px'}}
118
+ style={{height: '32px', width: '32px'}}
119
119
  onClick={handleCollapseToggle}
120
120
  icon={
121
121
  isCollapsed ? (
122
- <RightOutlined style={{ width: 12 }} />
122
+ <RightOutlined style={{ width: 16 }} />
123
123
  ) : (
124
- <DownOutlined style={{ width: 12 }} />
124
+ <DownOutlined style={{ width: 16 }} />
125
125
  )
126
126
  }
127
127
  />
@@ -139,17 +139,17 @@ export default function Widget({
139
139
  <div className="flex flex-column" {...getToggleProps()}>
140
140
  <Button
141
141
  className="squareIconButton no-min-width"
142
- style={{height: '25px', width: '25px'}}
142
+ style={{height: '32px', width: '32px'}}
143
143
  icon={
144
144
  !isExpanded ? (
145
145
  <RightOutlined
146
- style={{ width: 10, paddingTop: "4px" }}
146
+ style={{ width: 16, paddingTop: "4px" }}
147
147
  />
148
148
  ) : (
149
149
  //<PlusOutlined style={{width: 10}} />
150
150
  //<MinusOutlined style={{ width: 10 }} />
151
151
  <DownOutlined
152
- style={{ width: 10, paddingTop: "4px" }}
152
+ style={{ width: 16, paddingTop: "4px" }}
153
153
  />
154
154
  )
155
155
  }