@adcops/autocore-react 3.0.34 → 3.0.38
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/assets/BlocklyLogo.js +1 -9
- package/dist/assets/Distance.js +1 -5
- package/dist/assets/JogLong.js +1 -3
- package/dist/assets/JogMedium.js +1 -3
- package/dist/assets/JogShort.js +1 -3
- package/dist/assets/PythonLogo.js +1 -21
- package/dist/assets/Rotation3D.js +1 -3
- package/dist/assets/RotationCcw.js +1 -10
- package/dist/assets/RotationCcwA.js +1 -16
- package/dist/assets/RotationCcwB.js +1 -16
- package/dist/assets/RotationCcwC.js +1 -16
- package/dist/assets/RotationCw.js +1 -10
- package/dist/assets/RotationCwA.js +1 -16
- package/dist/assets/RotationCwB.js +1 -16
- package/dist/assets/RotationCwC.js +1 -16
- package/dist/assets/Run.js +1 -3
- package/dist/assets/Speed.js +1 -5
- package/dist/assets/SpeedFast.js +1 -3
- package/dist/assets/SpeedMedium.js +1 -3
- package/dist/assets/SpeedNone.js +1 -3
- package/dist/assets/SpeedSlow.js +1 -3
- package/dist/assets/Walk.js +1 -3
- package/dist/assets/index.js +1 -22
- package/dist/components/BlocklyEditor.css +71 -2
- package/dist/components/BlocklyEditor.js +1 -508
- package/dist/components/CodeEditor.js +1 -108
- package/dist/components/FileList.js +1 -218
- package/dist/components/FileSelect.js +1 -63
- package/dist/components/FitText.js +1 -13
- package/dist/components/Indicator.js +1 -113
- package/dist/components/IndicatorButton.js +1 -187
- package/dist/components/IndicatorRect.js +1 -93
- package/dist/components/JogPanel.js +1 -295
- package/dist/components/Lamp.js +1 -161
- package/dist/components/Osk.js +1 -125
- package/dist/components/OskDialog.js +1 -128
- package/dist/components/ProgressBarWithValue.js +1 -18
- package/dist/components/TextInput.js +1 -139
- package/dist/components/ToggleGroup.js +1 -204
- package/dist/components/ValueDisplay.js +1 -160
- package/dist/components/ValueIndicator.js +1 -38
- package/dist/components/ValueInput.js +1 -158
- package/dist/core/ActionMode.js +1 -18
- package/dist/core/EventEmitterContext.js +1 -252
- package/dist/core/IndicatorButtonState.js +1 -9
- package/dist/core/IndicatorColor.js +1 -36
- package/dist/core/MaskPatterns.js +1 -80
- package/dist/core/NumerableTypes.js +1 -10
- package/dist/core/PositionContext.js +1 -24
- package/dist/core/UniqueId.js +1 -32
- package/dist/core/ValueSimulator.js +1 -233
- package/dist/core/hoc.js +1 -44
- package/dist/hooks/adsHooks.js +1 -253
- package/dist/hooks/commandHooks.js +1 -252
- package/dist/hooks/index.js +1 -10
- package/dist/hooks/useScaledValue.js +1 -86
- package/dist/hub/CommandMessage.js +1 -9
- package/dist/hub/HubBase.js +1 -310
- package/dist/hub/HubSimulate.js +1 -46
- package/dist/hub/HubTauri.js +1 -130
- package/dist/hub/HubWebSocket.js +1 -240
- package/dist/hub/index.js +1 -57
- package/dist/themes/adc-dark/blue/fonts/AtkinsonHyperlegibleMono-Italic-VariableFont_wght.ttf +0 -0
- package/dist/themes/adc-dark/blue/fonts/AtkinsonHyperlegibleMono-VariableFont_wght.ttf +0 -0
- package/dist/themes/adc-dark/blue/fonts/AtkinsonHyperlegibleNext-Italic-VariableFont_wght.ttf +0 -0
- package/dist/themes/adc-dark/blue/fonts/AtkinsonHyperlegibleNext-Regular.woff2 +0 -0
- package/dist/themes/adc-dark/blue/fonts/AtkinsonHyperlegibleNext-RegularItalic.woff2 +0 -0
- package/dist/themes/adc-dark/blue/fonts/AtkinsonHyperlegibleNext-VariableFont_wght.ttf +0 -0
- package/dist/themes/adc-dark/blue/theme.css +7097 -0
- package/dist/themes/adc-dark/blue/theme.css.map +1 -0
- package/package.json +8 -2
- package/src/components/BlocklyEditor.css +71 -2
- package/src/themes/adc-dark/_extensions.scss +166 -0
- package/src/themes/adc-dark/_variables.scss +913 -0
- package/src/themes/adc-dark/blue/_fonts.scss +24 -0
- package/src/themes/adc-dark/blue/adc_theme.scss +32 -0
- package/src/themes/adc-dark/blue/fonts/AtkinsonHyperlegibleMono-Italic-VariableFont_wght.ttf +0 -0
- package/src/themes/adc-dark/blue/fonts/AtkinsonHyperlegibleMono-VariableFont_wght.ttf +0 -0
- package/src/themes/adc-dark/blue/fonts/AtkinsonHyperlegibleNext-Italic-VariableFont_wght.ttf +0 -0
- package/src/themes/adc-dark/blue/fonts/AtkinsonHyperlegibleNext-Regular.woff2 +0 -0
- package/src/themes/adc-dark/blue/fonts/AtkinsonHyperlegibleNext-RegularItalic.woff2 +0 -0
- package/src/themes/adc-dark/blue/fonts/AtkinsonHyperlegibleNext-VariableFont_wght.ttf +0 -0
- package/src/themes/adc-dark/blue/theme.scss +14 -0
- package/src/themes/theme-base/_colors.scss +18 -0
- package/src/themes/theme-base/_common.scss +75 -0
- package/src/themes/theme-base/_components.scss +111 -0
- package/src/themes/theme-base/_mixins.scss +243 -0
- package/src/themes/theme-base/components/button/_button.scss +644 -0
- package/src/themes/theme-base/components/button/_speeddial.scss +91 -0
- package/src/themes/theme-base/components/button/_splitbutton.scss +359 -0
- package/src/themes/theme-base/components/data/_carousel.scss +39 -0
- package/src/themes/theme-base/components/data/_datascroller.scss +47 -0
- package/src/themes/theme-base/components/data/_datatable.scss +389 -0
- package/src/themes/theme-base/components/data/_dataview.scss +47 -0
- package/src/themes/theme-base/components/data/_filter.scss +138 -0
- package/src/themes/theme-base/components/data/_orderlist.scss +86 -0
- package/src/themes/theme-base/components/data/_organizationchart.scss +50 -0
- package/src/themes/theme-base/components/data/_paginator.scss +91 -0
- package/src/themes/theme-base/components/data/_picklist.scss +74 -0
- package/src/themes/theme-base/components/data/_timeline.scss +38 -0
- package/src/themes/theme-base/components/data/_tree.scss +184 -0
- package/src/themes/theme-base/components/data/_treetable.scss +431 -0
- package/src/themes/theme-base/components/file/_fileupload.scss +41 -0
- package/src/themes/theme-base/components/input/_autocomplete.scss +95 -0
- package/src/themes/theme-base/components/input/_calendar.scss +251 -0
- package/src/themes/theme-base/components/input/_cascadeselect.scss +107 -0
- package/src/themes/theme-base/components/input/_checkbox.scss +181 -0
- package/src/themes/theme-base/components/input/_chips.scss +102 -0
- package/src/themes/theme-base/components/input/_colorpicker.scss +18 -0
- package/src/themes/theme-base/components/input/_dropdown.scss +252 -0
- package/src/themes/theme-base/components/input/_editor.scss +122 -0
- package/src/themes/theme-base/components/input/_iconfield.scss +10 -0
- package/src/themes/theme-base/components/input/_inputgroup.scss +74 -0
- package/src/themes/theme-base/components/input/_inputicon.scss +15 -0
- package/src/themes/theme-base/components/input/_inputnumber.scss +5 -0
- package/src/themes/theme-base/components/input/_inputotp.scss +10 -0
- package/src/themes/theme-base/components/input/_inputswitch.scss +100 -0
- package/src/themes/theme-base/components/input/_inputtext.scss +101 -0
- package/src/themes/theme-base/components/input/_listbox.scss +139 -0
- package/src/themes/theme-base/components/input/_mention.scss +31 -0
- package/src/themes/theme-base/components/input/_multiselect.scss +278 -0
- package/src/themes/theme-base/components/input/_password.scss +33 -0
- package/src/themes/theme-base/components/input/_radiobutton.scss +170 -0
- package/src/themes/theme-base/components/input/_rating.scss +81 -0
- package/src/themes/theme-base/components/input/_selectbutton.scss +50 -0
- package/src/themes/theme-base/components/input/_slider.scss +49 -0
- package/src/themes/theme-base/components/input/_togglebutton.scss +99 -0
- package/src/themes/theme-base/components/input/_treeselect.scss +151 -0
- package/src/themes/theme-base/components/input/_tristatecheckbox.scss +46 -0
- package/src/themes/theme-base/components/menu/_breadcrumb.scss +42 -0
- package/src/themes/theme-base/components/menu/_contextmenu.scss +39 -0
- package/src/themes/theme-base/components/menu/_dock.scss +109 -0
- package/src/themes/theme-base/components/menu/_megamenu.scss +141 -0
- package/src/themes/theme-base/components/menu/_menu.scss +33 -0
- package/src/themes/theme-base/components/menu/_menubar.scss +216 -0
- package/src/themes/theme-base/components/menu/_panelmenu.scss +153 -0
- package/src/themes/theme-base/components/menu/_slidemenu.scss +60 -0
- package/src/themes/theme-base/components/menu/_steps.scss +57 -0
- package/src/themes/theme-base/components/menu/_tabmenu.scss +50 -0
- package/src/themes/theme-base/components/menu/_tieredmenu.scss +43 -0
- package/src/themes/theme-base/components/messages/_inlinemessage.scss +69 -0
- package/src/themes/theme-base/components/messages/_message.scss +107 -0
- package/src/themes/theme-base/components/messages/_toast.scss +100 -0
- package/src/themes/theme-base/components/misc/_avatar.scss +34 -0
- package/src/themes/theme-base/components/misc/_badge.scss +77 -0
- package/src/themes/theme-base/components/misc/_blockui.scss +0 -0
- package/src/themes/theme-base/components/misc/_chip.scss +39 -0
- package/src/themes/theme-base/components/misc/_inplace.scss +17 -0
- package/src/themes/theme-base/components/misc/_metergroup.scss +81 -0
- package/src/themes/theme-base/components/misc/_progressbar.scss +17 -0
- package/src/themes/theme-base/components/misc/_scrolltop.scss +25 -0
- package/src/themes/theme-base/components/misc/_skeleton.scss +8 -0
- package/src/themes/theme-base/components/misc/_tag.scss +40 -0
- package/src/themes/theme-base/components/misc/_terminal.scss +12 -0
- package/src/themes/theme-base/components/multimedia/_galleria.scss +153 -0
- package/src/themes/theme-base/components/multimedia/_image.scss +54 -0
- package/src/themes/theme-base/components/overlay/_confirmpopup.scss +72 -0
- package/src/themes/theme-base/components/overlay/_dialog.scss +78 -0
- package/src/themes/theme-base/components/overlay/_overlaypanel.scss +64 -0
- package/src/themes/theme-base/components/overlay/_sidebar.scss +23 -0
- package/src/themes/theme-base/components/overlay/_tooltip.scss +33 -0
- package/src/themes/theme-base/components/panel/_accordion.scss +118 -0
- package/src/themes/theme-base/components/panel/_card.scss +30 -0
- package/src/themes/theme-base/components/panel/_divider.scss +31 -0
- package/src/themes/theme-base/components/panel/_fieldset.scss +47 -0
- package/src/themes/theme-base/components/panel/_panel.scss +47 -0
- package/src/themes/theme-base/components/panel/_scrollpanel.scss +10 -0
- package/src/themes/theme-base/components/panel/_splitter.scss +23 -0
- package/src/themes/theme-base/components/panel/_stepper.scss +136 -0
- package/src/themes/theme-base/components/panel/_tabview.scss +147 -0
- package/src/themes/theme-base/components/panel/_toolbar.scss +11 -0
- package/tools/build-themes.cjs +66 -0
- package/tools/copy-distribution-files.cjs +20 -16
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
@use "sass:math";
|
|
2
|
+
|
|
3
|
+
.p-speeddial-button {
|
|
4
|
+
&.p-button.p-button-icon-only {
|
|
5
|
+
width: $speedDialButtonWidth;
|
|
6
|
+
height: $speedDialButtonHeight;
|
|
7
|
+
|
|
8
|
+
.p-button-icon {
|
|
9
|
+
font-size: $speedDialButtonIconFontSize;
|
|
10
|
+
|
|
11
|
+
&.p-icon {
|
|
12
|
+
width: $speedDialButtonIconFontSize;
|
|
13
|
+
height: $speedDialButtonIconFontSize;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.p-speeddial-list {
|
|
20
|
+
outline: 0 none;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.p-speeddial-action {
|
|
24
|
+
width: $speedDialActionWidth;
|
|
25
|
+
height: $speedDialActionHeight;
|
|
26
|
+
background: $speedDialActionBg;
|
|
27
|
+
color: $speedDialActionTextColor;
|
|
28
|
+
|
|
29
|
+
&:hover {
|
|
30
|
+
background: $speedDialActionHoverBg;
|
|
31
|
+
color: $speedDialActionTextHoverColor;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.p-speeddial-direction-up {
|
|
36
|
+
.p-speeddial-item {
|
|
37
|
+
margin: math.div($inlineSpacing, 2);
|
|
38
|
+
|
|
39
|
+
&:first-child {
|
|
40
|
+
margin-bottom: $inlineSpacing;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.p-speeddial-direction-down {
|
|
46
|
+
.p-speeddial-item {
|
|
47
|
+
margin: math.div($inlineSpacing, 2);
|
|
48
|
+
|
|
49
|
+
&:first-child {
|
|
50
|
+
margin-top: $inlineSpacing;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.p-speeddial-direction-left {
|
|
56
|
+
.p-speeddial-item {
|
|
57
|
+
margin: 0 math.div($inlineSpacing, 2);
|
|
58
|
+
|
|
59
|
+
&:first-child {
|
|
60
|
+
margin-right: $inlineSpacing;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.p-speeddial-direction-right {
|
|
66
|
+
.p-speeddial-item {
|
|
67
|
+
margin: 0 math.div($inlineSpacing, 2);
|
|
68
|
+
|
|
69
|
+
&:first-child {
|
|
70
|
+
margin-left: $inlineSpacing;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.p-speeddial-circle,
|
|
76
|
+
.p-speeddial-semi-circle,
|
|
77
|
+
.p-speeddial-quarter-circle {
|
|
78
|
+
.p-speeddial-item {
|
|
79
|
+
margin: 0;
|
|
80
|
+
|
|
81
|
+
&:first-child,
|
|
82
|
+
&:last-child {
|
|
83
|
+
margin: 0;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.p-speeddial-mask {
|
|
89
|
+
background-color: $maskBg;
|
|
90
|
+
border-radius: $borderRadius;
|
|
91
|
+
}
|
|
@@ -0,0 +1,359 @@
|
|
|
1
|
+
.p-splitbutton {
|
|
2
|
+
border-radius: $borderRadius;
|
|
3
|
+
|
|
4
|
+
&.p-button-outlined {
|
|
5
|
+
> .p-button {
|
|
6
|
+
background-color: transparent;
|
|
7
|
+
color: $buttonBg;
|
|
8
|
+
border: $outlinedButtonBorder;
|
|
9
|
+
|
|
10
|
+
&:not(:disabled):hover {
|
|
11
|
+
background: rgba($buttonBg, $textButtonHoverBgOpacity);
|
|
12
|
+
color: $buttonBg;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
&:not(:disabled):active {
|
|
16
|
+
background: rgba($buttonBg, $textButtonActiveBgOpacity);
|
|
17
|
+
color: $buttonBg;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&.p-button-plain {
|
|
22
|
+
> .p-button {
|
|
23
|
+
color: $plainButtonTextColor;
|
|
24
|
+
border-color: $plainButtonTextColor;
|
|
25
|
+
|
|
26
|
+
&:not(:disabled):hover {
|
|
27
|
+
background: $plainButtonHoverBgColor;
|
|
28
|
+
color: $plainButtonTextColor;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&:not(:disabled):active {
|
|
32
|
+
background: $plainButtonActiveBgColor;
|
|
33
|
+
color: $plainButtonTextColor;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
&.p-button-text {
|
|
40
|
+
> .p-button {
|
|
41
|
+
background-color: transparent;
|
|
42
|
+
color: $buttonBg;
|
|
43
|
+
border-color: transparent;
|
|
44
|
+
|
|
45
|
+
&:not(:disabled):hover {
|
|
46
|
+
background: rgba($buttonBg, $textButtonHoverBgOpacity);
|
|
47
|
+
color: $buttonBg;
|
|
48
|
+
border-color: transparent;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
&:not(:disabled):active {
|
|
52
|
+
background: rgba($buttonBg, $textButtonActiveBgOpacity);
|
|
53
|
+
color: $buttonBg;
|
|
54
|
+
border-color: transparent;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
&.p-button-plain {
|
|
59
|
+
> .p-button {
|
|
60
|
+
color: $plainButtonTextColor;
|
|
61
|
+
|
|
62
|
+
&:not(:disabled):hover {
|
|
63
|
+
background: $plainButtonHoverBgColor;
|
|
64
|
+
color: $plainButtonTextColor;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
&:not(:disabled):active {
|
|
68
|
+
background: $plainButtonActiveBgColor;
|
|
69
|
+
color: $plainButtonTextColor;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
&.p-button-raised {
|
|
76
|
+
box-shadow: $raisedButtonShadow;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
&.p-button-rounded {
|
|
80
|
+
border-radius: $roundedButtonBorderRadius;
|
|
81
|
+
|
|
82
|
+
> .p-button {
|
|
83
|
+
border-radius: $roundedButtonBorderRadius;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
&.p-button-sm {
|
|
88
|
+
> .p-button {
|
|
89
|
+
@include scaledFontSize($fontSize, $scaleSM);
|
|
90
|
+
@include scaledPadding($buttonPadding, $scaleSM);
|
|
91
|
+
|
|
92
|
+
.p-button-icon {
|
|
93
|
+
@include scaledFontSize($primeIconFontSize, $scaleSM);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
&.p-button-lg {
|
|
99
|
+
> .p-button {
|
|
100
|
+
@include scaledFontSize($fontSize, $scaleLG);
|
|
101
|
+
@include scaledPadding($buttonPadding, $scaleLG);
|
|
102
|
+
|
|
103
|
+
&.p-button-icon-only {
|
|
104
|
+
width: auto;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.p-button-icon {
|
|
108
|
+
@include scaledFontSize($primeIconFontSize, $scaleLG);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.p-splitbutton-menubutton,
|
|
114
|
+
.p-splitbutton.p-button-rounded > .p-splitbutton-menubutton.p-button,
|
|
115
|
+
.p-splitbutton.p-button-outlined > .p-splitbutton-menubutton.p-button {
|
|
116
|
+
border-top-left-radius: 0;
|
|
117
|
+
border-bottom-left-radius: 0;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.p-splitbutton.p-button-secondary {
|
|
122
|
+
&.p-button-outlined {
|
|
123
|
+
> .p-button {
|
|
124
|
+
background-color: transparent;
|
|
125
|
+
color: $secondaryButtonBg;
|
|
126
|
+
border: $outlinedButtonBorder;
|
|
127
|
+
|
|
128
|
+
&:not(:disabled):hover {
|
|
129
|
+
background: rgba($secondaryButtonBg, $textButtonHoverBgOpacity);
|
|
130
|
+
color: $secondaryButtonBg;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
&:not(:disabled):active {
|
|
134
|
+
background: rgba($secondaryButtonBg, $textButtonActiveBgOpacity);
|
|
135
|
+
color: $secondaryButtonBg;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
&.p-button-text {
|
|
141
|
+
> .p-button {
|
|
142
|
+
background-color: transparent;
|
|
143
|
+
color: $secondaryButtonBg;
|
|
144
|
+
border-color: transparent;
|
|
145
|
+
|
|
146
|
+
&:not(:disabled):hover {
|
|
147
|
+
background: rgba($secondaryButtonBg, $textButtonHoverBgOpacity);
|
|
148
|
+
border-color: transparent;
|
|
149
|
+
color: $secondaryButtonBg;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
&:not(:disabled):active {
|
|
153
|
+
background: rgba($secondaryButtonBg, $textButtonActiveBgOpacity);
|
|
154
|
+
border-color: transparent;
|
|
155
|
+
color: $secondaryButtonBg;
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.p-splitbutton.p-button-info {
|
|
162
|
+
&.p-button-outlined {
|
|
163
|
+
> .p-button {
|
|
164
|
+
background-color: transparent;
|
|
165
|
+
color: $infoButtonBg;
|
|
166
|
+
border: $outlinedButtonBorder;
|
|
167
|
+
|
|
168
|
+
&:not(:disabled):hover {
|
|
169
|
+
background: rgba($infoButtonBg, $textButtonHoverBgOpacity);
|
|
170
|
+
color: $infoButtonBg;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
&:not(:disabled):active {
|
|
174
|
+
background: rgba($infoButtonBg, $textButtonActiveBgOpacity);
|
|
175
|
+
color: $infoButtonBg;
|
|
176
|
+
}
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
&.p-button-text {
|
|
181
|
+
> .p-button {
|
|
182
|
+
background-color: transparent;
|
|
183
|
+
color: $infoButtonBg;
|
|
184
|
+
border-color: transparent;
|
|
185
|
+
|
|
186
|
+
&:not(:disabled):hover {
|
|
187
|
+
background: rgba($infoButtonBg, $textButtonHoverBgOpacity);
|
|
188
|
+
border-color: transparent;
|
|
189
|
+
color: $infoButtonBg;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
&:not(:disabled):active {
|
|
193
|
+
background: rgba($infoButtonBg, $textButtonActiveBgOpacity);
|
|
194
|
+
border-color: transparent;
|
|
195
|
+
color: $infoButtonBg;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.p-splitbutton.p-button-success {
|
|
202
|
+
&.p-button-outlined {
|
|
203
|
+
> .p-button {
|
|
204
|
+
background-color: transparent;
|
|
205
|
+
color: $successButtonBg;
|
|
206
|
+
border: $outlinedButtonBorder;
|
|
207
|
+
|
|
208
|
+
&:not(:disabled):hover {
|
|
209
|
+
background: rgba($successButtonBg, $textButtonHoverBgOpacity);
|
|
210
|
+
color: $successButtonBg;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
&:not(:disabled):active {
|
|
214
|
+
background: rgba($successButtonBg, $textButtonActiveBgOpacity);
|
|
215
|
+
color: $successButtonBg;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
&.p-button-text {
|
|
221
|
+
> .p-button {
|
|
222
|
+
background-color: transparent;
|
|
223
|
+
color: $successButtonBg;
|
|
224
|
+
border-color: transparent;
|
|
225
|
+
|
|
226
|
+
&:not(:disabled):hover {
|
|
227
|
+
background: rgba($successButtonBg, $textButtonHoverBgOpacity);
|
|
228
|
+
border-color: transparent;
|
|
229
|
+
color: $successButtonBg;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
&:not(:disabled):active {
|
|
233
|
+
background: rgba($successButtonBg, $textButtonActiveBgOpacity);
|
|
234
|
+
border-color: transparent;
|
|
235
|
+
color: $successButtonBg;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.p-splitbutton.p-button-warning {
|
|
242
|
+
&.p-button-outlined {
|
|
243
|
+
> .p-button {
|
|
244
|
+
background-color: transparent;
|
|
245
|
+
color: $warningButtonBg;
|
|
246
|
+
border: $outlinedButtonBorder;
|
|
247
|
+
|
|
248
|
+
&:not(:disabled):hover {
|
|
249
|
+
background: rgba($warningButtonBg, $textButtonHoverBgOpacity);
|
|
250
|
+
color: $warningButtonBg;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
&:not(:disabled):active {
|
|
254
|
+
background: rgba($warningButtonBg, $textButtonActiveBgOpacity);
|
|
255
|
+
color: $warningButtonBg;
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
&.p-button-text {
|
|
261
|
+
> .p-button {
|
|
262
|
+
background-color: transparent;
|
|
263
|
+
color: $warningButtonBg;
|
|
264
|
+
border-color: transparent;
|
|
265
|
+
|
|
266
|
+
&:not(:disabled):hover {
|
|
267
|
+
background: rgba($warningButtonBg, $textButtonHoverBgOpacity);
|
|
268
|
+
border-color: transparent;
|
|
269
|
+
color: $warningButtonBg;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
&:not(:disabled):active {
|
|
273
|
+
background: rgba($warningButtonBg, $textButtonActiveBgOpacity);
|
|
274
|
+
border-color: transparent;
|
|
275
|
+
color: $warningButtonBg;
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.p-splitbutton.p-button-help {
|
|
282
|
+
&.p-button-outlined {
|
|
283
|
+
> .p-button {
|
|
284
|
+
background-color: transparent;
|
|
285
|
+
color: $helpButtonBg;
|
|
286
|
+
border: $outlinedButtonBorder;
|
|
287
|
+
|
|
288
|
+
&:not(:disabled):hover {
|
|
289
|
+
background: rgba($helpButtonBg, $textButtonHoverBgOpacity);
|
|
290
|
+
color: $helpButtonBg;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
&:not(:disabled):active {
|
|
294
|
+
background: rgba($helpButtonBg, $textButtonActiveBgOpacity);
|
|
295
|
+
color: $helpButtonBg;
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
&.p-button-text {
|
|
301
|
+
> .p-button {
|
|
302
|
+
background-color: transparent;
|
|
303
|
+
color: $helpButtonBg;
|
|
304
|
+
border-color: transparent;
|
|
305
|
+
|
|
306
|
+
&:not(:disabled):hover {
|
|
307
|
+
background: rgba($helpButtonBg, $textButtonHoverBgOpacity);
|
|
308
|
+
border-color: transparent;
|
|
309
|
+
color: $helpButtonBg;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
&:not(:disabled):active {
|
|
313
|
+
background: rgba($helpButtonBg, $textButtonActiveBgOpacity);
|
|
314
|
+
border-color: transparent;
|
|
315
|
+
color: $helpButtonBg;
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
.p-splitbutton.p-button-danger {
|
|
322
|
+
&.p-button-outlined {
|
|
323
|
+
> .p-button {
|
|
324
|
+
background-color: transparent;
|
|
325
|
+
color: $dangerButtonBg;
|
|
326
|
+
border: $outlinedButtonBorder;
|
|
327
|
+
|
|
328
|
+
&:not(:disabled):hover {
|
|
329
|
+
background: rgba($dangerButtonBg, $textButtonHoverBgOpacity);
|
|
330
|
+
color: $dangerButtonBg;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
&:not(:disabled):active {
|
|
334
|
+
background: rgba($dangerButtonBg, $textButtonActiveBgOpacity);
|
|
335
|
+
color: $dangerButtonBg;
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
&.p-button-text {
|
|
341
|
+
> .p-button {
|
|
342
|
+
background-color: transparent;
|
|
343
|
+
color: $dangerButtonBg;
|
|
344
|
+
border-color: transparent;
|
|
345
|
+
|
|
346
|
+
&:not(:disabled):hover {
|
|
347
|
+
background: rgba($dangerButtonBg, $textButtonHoverBgOpacity);
|
|
348
|
+
border-color: transparent;
|
|
349
|
+
color: $dangerButtonBg;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
&:not(:disabled):active {
|
|
353
|
+
background: rgba($dangerButtonBg, $textButtonActiveBgOpacity);
|
|
354
|
+
border-color: transparent;
|
|
355
|
+
color: $dangerButtonBg;
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
.p-carousel {
|
|
2
|
+
.p-carousel-content {
|
|
3
|
+
.p-carousel-prev,
|
|
4
|
+
.p-carousel-next {
|
|
5
|
+
@include action-icon();
|
|
6
|
+
& {
|
|
7
|
+
margin: $inlineSpacing;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.p-carousel-indicators {
|
|
13
|
+
padding: $carouselIndicatorsPadding;
|
|
14
|
+
|
|
15
|
+
.p-carousel-indicator {
|
|
16
|
+
margin-right: $inlineSpacing;
|
|
17
|
+
margin-bottom: $inlineSpacing;
|
|
18
|
+
|
|
19
|
+
button {
|
|
20
|
+
background-color: $carouselIndicatorBg;
|
|
21
|
+
width: $carouselIndicatorWidth;
|
|
22
|
+
height: $carouselIndicatorHeight;
|
|
23
|
+
transition: $actionIconTransition;
|
|
24
|
+
border-radius: $carouselIndicatorBorderRadius;
|
|
25
|
+
|
|
26
|
+
&:hover {
|
|
27
|
+
background: $carouselIndicatorHoverBg;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&.p-highlight {
|
|
32
|
+
button {
|
|
33
|
+
background: $highlightBg;
|
|
34
|
+
color: $highlightTextColor;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
.p-datascroller {
|
|
2
|
+
.p-paginator-top {
|
|
3
|
+
border-width: $tableTopPaginatorBorderWidth;
|
|
4
|
+
border-radius: 0;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.p-paginator-bottom {
|
|
8
|
+
border-width: $tableBottomPaginatorBorderWidth;
|
|
9
|
+
border-radius: 0;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.p-datascroller-header {
|
|
13
|
+
background: $tableHeaderBg;
|
|
14
|
+
color: $tableHeaderTextColor;
|
|
15
|
+
border: $tableHeaderBorder;
|
|
16
|
+
border-width: $tableHeaderBorderWidth;
|
|
17
|
+
padding: $tableHeaderPadding;
|
|
18
|
+
font-weight: $tableHeaderFontWeight;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.p-datascroller-content {
|
|
22
|
+
background: $tableBodyRowBg;
|
|
23
|
+
color: $tableBodyRowTextColor;
|
|
24
|
+
border: $dataViewContentBorder;
|
|
25
|
+
padding: $dataViewContentPadding;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&.p-datascroller-inline {
|
|
29
|
+
.p-datascroller-list {
|
|
30
|
+
> li {
|
|
31
|
+
border: $dataViewListItemBorder;
|
|
32
|
+
border-width: $dataViewListItemBorderWidth;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.p-datascroller-footer {
|
|
38
|
+
background: $tableFooterBg;
|
|
39
|
+
color: $tableFooterTextColor;
|
|
40
|
+
border: $tableFooterBorder;
|
|
41
|
+
border-width: $tableFooterBorderWidth;
|
|
42
|
+
padding: $tableFooterPadding;
|
|
43
|
+
font-weight: $tableFooterFontWeight;
|
|
44
|
+
border-bottom-left-radius: $borderRadius;
|
|
45
|
+
border-bottom-right-radius: $borderRadius;
|
|
46
|
+
}
|
|
47
|
+
}
|