@retailcrm/embed-ui-v1-components 0.9.22 → 0.9.23-alpha.1
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/host.cjs +334 -306
- package/dist/host.css +46 -0
- package/dist/host.d.ts +2 -0
- package/dist/host.js +334 -306
- package/dist/remote.cjs +12 -0
- package/dist/remote.d.ts +46 -0
- package/dist/remote.js +12 -0
- package/docs/profiles/components/UiPopper.yml +1 -1
- package/docs/profiles/pages/ModalSidebar.yml +1 -1
- package/package.json +1 -1
package/dist/host.css
CHANGED
|
@@ -4056,6 +4056,52 @@
|
|
|
4056
4056
|
min-width: 14px;
|
|
4057
4057
|
height: 14px;
|
|
4058
4058
|
}
|
|
4059
|
+
.ui-v1-page-footer {
|
|
4060
|
+
display: flex;
|
|
4061
|
+
align-items: center;
|
|
4062
|
+
justify-content: space-between;
|
|
4063
|
+
width: 100%;
|
|
4064
|
+
min-height: 56px;
|
|
4065
|
+
padding: 10px 40px 10px 64px;
|
|
4066
|
+
background-color: white;
|
|
4067
|
+
border-top: 1px solid #DEE2E6;
|
|
4068
|
+
gap: 16px;
|
|
4069
|
+
}
|
|
4070
|
+
.ui-v1-page-footer,
|
|
4071
|
+
.ui-v1-page-footer *,
|
|
4072
|
+
.ui-v1-page-footer *::before,
|
|
4073
|
+
.ui-v1-page-footer *::after {
|
|
4074
|
+
box-sizing: border-box;
|
|
4075
|
+
}
|
|
4076
|
+
.ui-v1-page-footer__actions,
|
|
4077
|
+
.ui-v1-page-footer__aside {
|
|
4078
|
+
display: flex;
|
|
4079
|
+
align-items: center;
|
|
4080
|
+
min-width: 0;
|
|
4081
|
+
gap: 16px;
|
|
4082
|
+
}
|
|
4083
|
+
.ui-v1-page-footer__actions {
|
|
4084
|
+
flex: 1 1 auto;
|
|
4085
|
+
}
|
|
4086
|
+
.ui-v1-page-footer__aside {
|
|
4087
|
+
flex: 0 0 auto;
|
|
4088
|
+
margin-left: auto;
|
|
4089
|
+
}
|
|
4090
|
+
@media (max-width: 640px) {
|
|
4091
|
+
.ui-v1-page-footer {
|
|
4092
|
+
align-items: stretch;
|
|
4093
|
+
flex-direction: column;
|
|
4094
|
+
padding-right: 16px;
|
|
4095
|
+
padding-left: 16px;
|
|
4096
|
+
}
|
|
4097
|
+
.ui-v1-page-footer__actions,
|
|
4098
|
+
.ui-v1-page-footer__aside {
|
|
4099
|
+
flex-wrap: wrap;
|
|
4100
|
+
}
|
|
4101
|
+
.ui-v1-page-footer__aside {
|
|
4102
|
+
margin-left: 0;
|
|
4103
|
+
}
|
|
4104
|
+
}
|
|
4059
4105
|
:root {
|
|
4060
4106
|
--ui-v1-page-header-danger-color: #FF5353;
|
|
4061
4107
|
--ui-v1-page-header-danger-shadow-color: rgba(255, 83, 83, 0.1);
|
package/dist/host.d.ts
CHANGED
|
@@ -2339,6 +2339,8 @@ declare type UiNumberStepperProperties = {
|
|
|
2339
2339
|
outlined?: boolean;
|
|
2340
2340
|
textboxOptions?: Partial<Omit<UiTextboxProperties, 'id' | 'value' | 'type' | 'min' | 'max' | 'step' | 'decimals' | 'clearable' | 'disabled' | 'readonly' | 'required' | 'size' | 'outlined' | 'autofit' | 'inputAttributes'>>;
|
|
2341
2341
|
};
|
|
2342
|
+
export declare const UiPageFooter: DefineComponent<UiPageFooterProperties>;
|
|
2343
|
+
declare type UiPageFooterProperties = Record<string, never>;
|
|
2342
2344
|
export declare const UiPageHeader: DefineComponent<UiPageHeaderProperties, UiPageHeaderMethods>;
|
|
2343
2345
|
export declare const UiPageHeaderLayout: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
2344
2346
|
declare type UiPageHeaderMethods = {
|