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 +2 -0
- package/dist/sbwb-ds.js +1 -0
- package/dist/sbwb-ds.umd.cjs +1 -0
- package/dist/src/presentation/components/atoms/ReviewStatus/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/presentation/components/atoms/Modal/Modal.stories.tsx +5 -5
- package/src/presentation/components/atoms/ReviewStatus/index.tsx +1 -1
- package/src/presentation/components/atoms/Sheet/styles.ts +1 -0
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;
|
package/dist/sbwb-ds.umd.cjs
CHANGED
|
@@ -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;
|
package/package.json
CHANGED
|
@@ -145,7 +145,7 @@ const Template = (args) => {
|
|
|
145
145
|
placeholder="Placeholder"
|
|
146
146
|
value={undefined}
|
|
147
147
|
width="472px"
|
|
148
|
-
size="
|
|
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="
|
|
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="
|
|
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
|
|
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
|
|
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;
|