@milaboratories/uikit 2.2.9 → 2.2.10

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.
Files changed (29) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/pl-uikit.js +2296 -2167
  3. package/dist/pl-uikit.umd.cjs +8 -8
  4. package/dist/src/components/PlAccordion/ExpandTransition.vue.d.ts +16 -0
  5. package/dist/src/components/PlAccordion/PlAccordion.vue.d.ts +30 -0
  6. package/dist/src/components/PlAccordion/PlAccordionSection.vue.d.ts +33 -0
  7. package/dist/src/components/PlAccordion/index.d.ts +2 -0
  8. package/dist/src/components/PlBtnGroup/PlBtnGroup.vue.d.ts +4 -0
  9. package/dist/src/components/PlSectionSeparator/PlSectionSeparator.vue.d.ts +26 -0
  10. package/dist/src/components/PlSectionSeparator/index.d.ts +1 -0
  11. package/dist/src/drafts/FileBaseInput.vue.d.ts +1 -1
  12. package/dist/src/index.d.ts +2 -0
  13. package/dist/style.css +1 -1
  14. package/dist/tsconfig.lib.tsbuildinfo +1 -1
  15. package/package.json +2 -2
  16. package/src/assets/animations.scss +21 -0
  17. package/src/assets/base.scss +2 -0
  18. package/src/assets/icons/icons-set.scss +2 -2
  19. package/src/components/PlAccordion/ExpandTransition.vue +37 -0
  20. package/src/components/PlAccordion/PlAccordion.vue +20 -0
  21. package/src/components/PlAccordion/PlAccordionSection.vue +89 -0
  22. package/src/components/PlAccordion/index.ts +2 -0
  23. package/src/components/PlBtnGroup/PlBtnGroup.vue +5 -1
  24. package/src/components/PlBtnGroup/pl-btn-group.scss +4 -0
  25. package/src/components/PlSectionSeparator/PlSectionSeparator.vue +57 -0
  26. package/src/components/PlSectionSeparator/index.ts +1 -0
  27. package/src/components/PlTextField/PlTextField.vue +1 -1
  28. package/src/components/PlTextField/pl-text-field.scss +10 -0
  29. package/src/index.ts +2 -0
@@ -0,0 +1,16 @@
1
+ declare function __VLS_template(): {
2
+ slots: {
3
+ default?(_: {}): any;
4
+ };
5
+ refs: {};
6
+ attrs: Partial<{}>;
7
+ };
8
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
+ declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
10
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
11
+ export default _default;
12
+ type __VLS_WithTemplateSlots<T, S> = T & {
13
+ new (): {
14
+ $slots: S;
15
+ };
16
+ };
@@ -0,0 +1,30 @@
1
+ declare let __VLS_typeProps: {
2
+ /**
3
+ * Allow multiple accordion sections to be opened at the same time
4
+ */
5
+ multiple?: boolean;
6
+ };
7
+ type __VLS_PublicProps = {
8
+ modelValue?: string;
9
+ } & typeof __VLS_typeProps;
10
+ declare function __VLS_template(): {
11
+ slots: {
12
+ header?(_: {}): any;
13
+ default?(_: {}): any;
14
+ };
15
+ refs: {};
16
+ attrs: Partial<{}>;
17
+ };
18
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
19
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
+ "update:modelValue": (modelValue: string) => any;
21
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
22
+ "onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
23
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
24
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
25
+ export default _default;
26
+ type __VLS_WithTemplateSlots<T, S> = T & {
27
+ new (): {
28
+ $slots: S;
29
+ };
30
+ };
@@ -0,0 +1,33 @@
1
+ declare let __VLS_typeProps: {
2
+ /**
3
+ * The label text (optional)
4
+ */
5
+ label?: string;
6
+ /**
7
+ * If `true`, remove top padding
8
+ */
9
+ compact?: boolean;
10
+ };
11
+ type __VLS_PublicProps = {
12
+ modelValue?: boolean;
13
+ } & typeof __VLS_typeProps;
14
+ declare function __VLS_template(): {
15
+ slots: {
16
+ default?(_: {}): any;
17
+ };
18
+ refs: {};
19
+ attrs: Partial<{}>;
20
+ };
21
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
22
+ declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
23
+ "update:modelValue": (modelValue: boolean) => any;
24
+ }, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
25
+ "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
26
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
27
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
28
+ export default _default;
29
+ type __VLS_WithTemplateSlots<T, S> = T & {
30
+ new (): {
31
+ $slots: S;
32
+ };
33
+ };
@@ -0,0 +1,2 @@
1
+ export { default as PlAccordion } from './PlAccordion.vue';
2
+ export { default as PlAccordionSection } from './PlAccordionSection.vue';
@@ -23,6 +23,10 @@ declare const _default: <M = unknown>(__VLS_props: NonNullable<Awaited<typeof __
23
23
  * If `true`, the component is disabled and cannot be interacted with.
24
24
  */
25
25
  disabled?: boolean;
26
+ /**
27
+ * If `true`, the height of the component is 32px
28
+ */
29
+ compact?: boolean;
26
30
  /**
27
31
  * A helper text displayed below the component when there are no errors (optional).
28
32
  */
@@ -0,0 +1,26 @@
1
+ declare function __VLS_template(): {
2
+ slots: {
3
+ default?(_: {}): any;
4
+ };
5
+ refs: {};
6
+ attrs: Partial<{}>;
7
+ };
8
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
+ declare const __VLS_component: import("vue").DefineComponent<{
10
+ /**
11
+ * If `true`, remove top padding
12
+ */
13
+ compact?: boolean;
14
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{
15
+ /**
16
+ * If `true`, remove top padding
17
+ */
18
+ compact?: boolean;
19
+ }> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
20
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
21
+ export default _default;
22
+ type __VLS_WithTemplateSlots<T, S> = T & {
23
+ new (): {
24
+ $slots: S;
25
+ };
26
+ };
@@ -0,0 +1 @@
1
+ export { default as PlSectionSeparator } from './PlSectionSeparator.vue';
@@ -26,9 +26,9 @@ declare const __VLS_component: import("vue").DefineComponent<PropsType, {}, {},
26
26
  }>, {
27
27
  title: string;
28
28
  modelValue: File[] | null;
29
+ multiple: boolean;
29
30
  description: string;
30
31
  acceptedTypes: string;
31
- multiple: boolean;
32
32
  buttonText: string;
33
33
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
34
34
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
@@ -39,6 +39,8 @@ export * from './components/PlSlideModal';
39
39
  export * from './components/PlToggleSwitch';
40
40
  export * from './components/PlLogView';
41
41
  export * from './components/PlTabs';
42
+ export * from './components/PlSectionSeparator';
43
+ export * from './components/PlAccordion';
42
44
  export * from './components/PlFileDialog';
43
45
  export * from './components/PlFileInput';
44
46
  export * from './components/PlNotificationAlert';