fis-component 0.0.33 → 0.0.34
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/cjs/index.js +6 -15
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/src/components/Input/InputStepper/InputStepper.stories.d.ts +311 -0
- package/dist/cjs/types/src/components/Input/InputTime/styles.d.ts +0 -2
- package/dist/esm/index.js +6 -15
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/src/components/Input/InputStepper/InputStepper.stories.d.ts +311 -0
- package/dist/esm/types/src/components/Input/InputTime/styles.d.ts +0 -2
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -61697,7 +61697,7 @@ function GlobalStyle({ theme }) {
|
|
|
61697
61697
|
const DivContainerSC$a = styled.div `
|
|
61698
61698
|
display: flex;
|
|
61699
61699
|
align-items: flex-start;
|
|
61700
|
-
width:
|
|
61700
|
+
width: 100%;
|
|
61701
61701
|
border-radius: ${getTheme("com/toast/corner-radius")};
|
|
61702
61702
|
outline: ${getTheme("com/toast/theme/border/stroke-width")} solid
|
|
61703
61703
|
${getTheme("com/toast/theme/border/color-stroke/neutral")};
|
|
@@ -64002,6 +64002,7 @@ const CheckboxContainerStyled = styled.label `
|
|
|
64002
64002
|
align-items: center;
|
|
64003
64003
|
gap: ${getTheme("com/checkbox/horizontal-gap")};
|
|
64004
64004
|
cursor: pointer;
|
|
64005
|
+
width: fit-content;
|
|
64005
64006
|
|
|
64006
64007
|
&:hover ${CheckboxControlStyled} {
|
|
64007
64008
|
border-color: ${getTheme("com/checkbox/item/unmarked/color-stroke/hover")};
|
|
@@ -65605,7 +65606,7 @@ const DicContainerSC = styled.div `
|
|
|
65605
65606
|
display: flex;
|
|
65606
65607
|
flex-direction: column;
|
|
65607
65608
|
gap: ${getTheme("sem/dimension/gap/xs")};
|
|
65608
|
-
width:
|
|
65609
|
+
width: 100%;
|
|
65609
65610
|
`;
|
|
65610
65611
|
const DivResizeSC = styled.div `
|
|
65611
65612
|
position: absolute;
|
|
@@ -65644,6 +65645,7 @@ const TextAreaSC = styled.textarea `
|
|
|
65644
65645
|
font-family: inherit;
|
|
65645
65646
|
outline: none;
|
|
65646
65647
|
border: none;
|
|
65648
|
+
width: 100%;
|
|
65647
65649
|
${getTheme("Paragraph/Sm")};
|
|
65648
65650
|
padding-top: ${getTheme("com/input/field/size-md/label/vertical-padding")};
|
|
65649
65651
|
padding-right: ${getTheme("com/input/field/size-md/label/horizontal-padding")};
|
|
@@ -65945,7 +65947,7 @@ const DivContainerSC$5 = styled.div `
|
|
|
65945
65947
|
display: flex;
|
|
65946
65948
|
align-items: center;
|
|
65947
65949
|
justify-content: space-between;
|
|
65948
|
-
width:
|
|
65950
|
+
width: 100%;
|
|
65949
65951
|
background-color: ${getTheme("com/input/field/default/background/default")};
|
|
65950
65952
|
height: ${getTheme("com/input/field/size-md/height")};
|
|
65951
65953
|
height: ${getTheme("com/input/field/size-md/height")};
|
|
@@ -70832,7 +70834,7 @@ const DivContainerSC$2 = styled.div `
|
|
|
70832
70834
|
display: flex;
|
|
70833
70835
|
flex-direction: column;
|
|
70834
70836
|
gap: ${getTheme("com/input/vertical-gap")};
|
|
70835
|
-
width:
|
|
70837
|
+
width: 100%;
|
|
70836
70838
|
`;
|
|
70837
70839
|
const DivHintWrapperSC = styled.div `
|
|
70838
70840
|
display: flex;
|
|
@@ -70855,17 +70857,6 @@ const SpanHintSC = styled.span `
|
|
|
70855
70857
|
color: ${getTheme("com/input/hint/disable/label/color-text")};
|
|
70856
70858
|
}
|
|
70857
70859
|
`;
|
|
70858
|
-
styled.div `
|
|
70859
|
-
display: flex;
|
|
70860
|
-
flex-direction: column;
|
|
70861
|
-
width: fit-content;
|
|
70862
|
-
gap: ${getTheme("com/input/vertical-gap")};
|
|
70863
|
-
`;
|
|
70864
|
-
styled.div `
|
|
70865
|
-
position: relative;
|
|
70866
|
-
display: inline-block;
|
|
70867
|
-
width: 100%;
|
|
70868
|
-
`;
|
|
70869
70860
|
const HiddenTimePickerSC = styled(TimePicker) `
|
|
70870
70861
|
position: absolute;
|
|
70871
70862
|
top: 0;
|