@iwer/devui 1.0.1 → 1.0.2
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/build/iwer-devui.js +9 -16
- package/build/iwer-devui.min.js +26 -26
- package/build/iwer-devui.module.js +9 -16
- package/build/iwer-devui.module.min.js +25 -25
- package/lib/components/styled.d.ts.map +1 -1
- package/lib/components/styled.js +8 -15
- package/lib/components/styled.js.map +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -2
package/build/iwer-devui.js
CHANGED
|
@@ -4740,7 +4740,6 @@
|
|
|
4740
4740
|
border-radius: ${ControlButtonStyles.radiusSolo};
|
|
4741
4741
|
}
|
|
4742
4742
|
`;
|
|
4743
|
-
Button.defaultProps = { $reverse: false };
|
|
4744
4743
|
const HeaderButtonsContainer = dt.div `
|
|
4745
4744
|
padding: 2px;
|
|
4746
4745
|
display: flex;
|
|
@@ -4822,7 +4821,6 @@
|
|
|
4822
4821
|
margin-bottom: 0;
|
|
4823
4822
|
}
|
|
4824
4823
|
`;
|
|
4825
|
-
ButtonContainer.defaultProps = { $reverse: false };
|
|
4826
4824
|
const ButtonGroup = dt.div `
|
|
4827
4825
|
display: flex;
|
|
4828
4826
|
flex-direction: ${({ $reverse }) => ($reverse ? 'row-reverse' : 'row')};
|
|
@@ -4832,7 +4830,6 @@
|
|
|
4832
4830
|
margin: ${({ $reverse }) => ($reverse ? '0 5px 0 0' : '0 0 0 5px')};
|
|
4833
4831
|
gap: 3px;
|
|
4834
4832
|
`;
|
|
4835
|
-
ButtonGroup.defaultProps = { $reverse: false };
|
|
4836
4833
|
dt.button `
|
|
4837
4834
|
background-color: rgba(255, 255, 255, 0.3);
|
|
4838
4835
|
border: none;
|
|
@@ -4895,7 +4892,6 @@
|
|
|
4895
4892
|
border-radius: ${ControlButtonStyles.radiusMiddle};
|
|
4896
4893
|
}
|
|
4897
4894
|
`;
|
|
4898
|
-
RangeSelector$1.defaultProps = { $reverse: false };
|
|
4899
4895
|
dt.div `
|
|
4900
4896
|
display: flex;
|
|
4901
4897
|
flex-direction: column;
|
|
@@ -4910,14 +4906,13 @@
|
|
|
4910
4906
|
justify-content: center;
|
|
4911
4907
|
`;
|
|
4912
4908
|
const FAIcon = dt(FontAwesomeIcon) `
|
|
4913
|
-
height: ${({ $size }) => `${$size}px`};
|
|
4914
|
-
min-height: ${({ $size }) => `${$size}px`};
|
|
4915
|
-
max-height: ${({ $size }) => `${$size}px`};
|
|
4916
|
-
width: ${({ $size }) => `${$size}px`};
|
|
4917
|
-
min-width: ${({ $size }) => `${$size}px`};
|
|
4918
|
-
max-width: ${({ $size }) => `${$size}px`};
|
|
4909
|
+
height: ${({ $size = 14 }) => `${$size}px`};
|
|
4910
|
+
min-height: ${({ $size = 14 }) => `${$size}px`};
|
|
4911
|
+
max-height: ${({ $size = 14 }) => `${$size}px`};
|
|
4912
|
+
width: ${({ $size = 14 }) => `${$size}px`};
|
|
4913
|
+
min-width: ${({ $size = 14 }) => `${$size}px`};
|
|
4914
|
+
max-width: ${({ $size = 14 }) => `${$size}px`};
|
|
4919
4915
|
`;
|
|
4920
|
-
FAIcon.defaultProps = { $size: 14 };
|
|
4921
4916
|
const ControlPanel = dt.div `
|
|
4922
4917
|
position: fixed;
|
|
4923
4918
|
padding: 5px;
|
|
@@ -4935,13 +4930,12 @@
|
|
|
4935
4930
|
flex-direction: column;
|
|
4936
4931
|
`;
|
|
4937
4932
|
const SectionBreak = dt.hr `
|
|
4938
|
-
width: ${({ $horizontal }) => ($horizontal ? 'unset' : '1px')};
|
|
4939
|
-
height: ${({ $horizontal }) => ($horizontal ? '1px' : 'unset')};
|
|
4933
|
+
width: ${({ $horizontal = true }) => ($horizontal ? 'unset' : '1px')};
|
|
4934
|
+
height: ${({ $horizontal = true }) => ($horizontal ? '1px' : 'unset')};
|
|
4940
4935
|
background-color: ${Colors.panelBorder};
|
|
4941
4936
|
margin: 5px 3px;
|
|
4942
4937
|
border: none;
|
|
4943
4938
|
`;
|
|
4944
|
-
SectionBreak.defaultProps = { $horizontal: true };
|
|
4945
4939
|
const PanelHeaderButton = dt.button `
|
|
4946
4940
|
background-color: transparent;
|
|
4947
4941
|
border: none;
|
|
@@ -4967,7 +4961,6 @@
|
|
|
4967
4961
|
outline: none;
|
|
4968
4962
|
}
|
|
4969
4963
|
`;
|
|
4970
|
-
PanelHeaderButton.defaultProps = { $isRed: false };
|
|
4971
4964
|
const ValuesContainer = dt.div `
|
|
4972
4965
|
display: flex;
|
|
4973
4966
|
flex-direction: row;
|
|
@@ -42368,7 +42361,7 @@ void main() {
|
|
|
42368
42361
|
}
|
|
42369
42362
|
}
|
|
42370
42363
|
|
|
42371
|
-
const VERSION = "1.0.
|
|
42364
|
+
const VERSION = "1.0.2";
|
|
42372
42365
|
|
|
42373
42366
|
var client = {};
|
|
42374
42367
|
|