sbwb-ds 1.0.73 → 1.0.75

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/index.d.ts CHANGED
@@ -7,6 +7,7 @@ import { InputProps } from './src/presentation/components/atoms/Input';
7
7
  import { AlertProps } from './src/presentation/components/atoms/Alert';
8
8
  import { TextareaProps } from './src/presentation/components/atoms/Textarea';
9
9
  import { SelectProps } from './src/presentation/components/atoms/Select';
10
+ import { SelectOption } from './src/models/select-option';
10
11
  export { default as Accordion } from './src/presentation/components/atoms/Accordion';
11
12
  export { default as ActionButton } from './src/presentation/components/atoms/ActionButton';
12
13
  export { default as Actions } from './src/presentation/components/atoms/Actions';
@@ -57,4 +58,5 @@ export type { InputProps };
57
58
  export type { AlertProps };
58
59
  export type { TextareaProps };
59
60
  export type { SelectProps };
61
+ export type { SelectOption };
60
62
  export { sg };
package/dist/sbwb-ds.js CHANGED
@@ -52326,6 +52326,7 @@ const _he = () => {
52326
52326
  `, Ahe = $.div`
52327
52327
  display: flex;
52328
52328
  flex-direction: column;
52329
+ height: 100%;
52329
52330
  width: 100%;
52330
52331
  align-items: center;
52331
52332
  justify-content: space-between;
@@ -2269,6 +2269,7 @@ echarts.use([`+T+"]);":"Unknown series "+k))}return}if(h==="tooltip"){if(w){proc
2269
2269
  `,Coe=R.div`
2270
2270
  display: flex;
2271
2271
  flex-direction: column;
2272
+ height: 100%;
2272
2273
  width: 100%;
2273
2274
  align-items: center;
2274
2275
  justify-content: space-between;
@@ -1,4 +1,4 @@
1
- import { SelectOption } from 'models/select-option';
1
+ import { SelectOption } from '../../../../models/select-option';
2
2
  export interface ReviewStatusElementProps {
3
3
  id?: string;
4
4
  score: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sbwb-ds",
3
- "version": "1.0.73",
3
+ "version": "1.0.75",
4
4
  "type": "module",
5
5
  "description": "Sistema de design para padronização dos processos visuais do portal SUBWEB",
6
6
  "main": "dist/sbwb-ds.js",
@@ -145,7 +145,7 @@ const Template = (args) => {
145
145
  placeholder="Placeholder"
146
146
  value={undefined}
147
147
  width="472px"
148
- size="Small"
148
+ size="Medium"
149
149
  />
150
150
  <Autocomplete
151
151
  label="Autocomplete Medium Icon left Default"
@@ -153,7 +153,7 @@ const Template = (args) => {
153
153
  placeholder="Placeholder"
154
154
  value={undefined}
155
155
  width="472px"
156
- size="Small"
156
+ size="Medium"
157
157
  />
158
158
  <Input
159
159
  id=""
@@ -163,7 +163,7 @@ const Template = (args) => {
163
163
  iconPosition="right"
164
164
  iconName="Visibility"
165
165
  width="472px"
166
- size="Small"
166
+ size="Medium"
167
167
  />
168
168
  <div
169
169
  style={{
@@ -204,7 +204,7 @@ const Template = (args) => {
204
204
  }}
205
205
  >
206
206
  <Select
207
- label="Select Medium Default"
207
+ label="Select Small Default"
208
208
  options={[]}
209
209
  placeholder="Placeholder"
210
210
  value={undefined}
@@ -212,7 +212,7 @@ const Template = (args) => {
212
212
  size="Small"
213
213
  />
214
214
  <Autocomplete
215
- label="Autocomplete Medium Icon left Default"
215
+ label="Autocomplete Small Icon left Default"
216
216
  options={[]}
217
217
  placeholder="Placeholder"
218
218
  value={undefined}
@@ -2,7 +2,7 @@ import * as C from './styles';
2
2
  import { useReviewStatus } from './hooks/useReviewStatus';
3
3
  import Tooltip from '../Tooltip';
4
4
  import ReviewStatusSelect from './components/atoms/ReviewStatusSelect';
5
- import { SelectOption } from 'models/select-option';
5
+ import { SelectOption } from '../../../../models/select-option';
6
6
 
7
7
  export interface ReviewStatusElementProps {
8
8
  id?: string;
@@ -57,6 +57,7 @@ export const ScrollContainer = styled.div`
57
57
  export const Content = styled.div`
58
58
  display: flex;
59
59
  flex-direction: column;
60
+ height: 100%;
60
61
  width: 100%;
61
62
  align-items: center;
62
63
  justify-content: space-between;