layers-design-system 2.7.2 → 3.0.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.
@@ -1,4 +1,4 @@
1
- import { c as o } from "./main-53368021.js";
1
+ import { c as o } from "./main-4afaa383.js";
2
2
  var a = { exports: {} };
3
3
  (function(t, _) {
4
4
  (function(r, e) {
@@ -1,4 +1,4 @@
1
- import { d as r, c as a } from "./main-53368021.js";
1
+ import { d as r, c as a } from "./main-4afaa383.js";
2
2
  var m = { exports: {} };
3
3
  (function(t, d) {
4
4
  (function(s, o) {
@@ -1,32 +1,18 @@
1
- function c(t, i) {
2
- for (var o = 0; o < i.length; o++) {
3
- const e = i[o];
4
- if (typeof e != "string" && !Array.isArray(e)) {
5
- for (const a in e)
6
- if (a !== "default" && !(a in t)) {
7
- const r = Object.getOwnPropertyDescriptor(e, a);
8
- r && Object.defineProperty(t, a, r.get ? r : {
9
- enumerable: !0,
10
- get: () => e[a]
11
- });
12
- }
13
- }
14
- }
15
- return Object.freeze(Object.defineProperty(t, Symbol.toStringTag, { value: "Module" }));
16
- }
17
- var n = {};
18
- n.__esModule = !0;
19
- var l = n.default = {
1
+ var e = {
2
+ name: "es",
20
3
  el: {
4
+ breadcrumb: {
5
+ label: "Breadcrumb"
6
+ },
21
7
  colorpicker: {
22
8
  confirm: "Confirmar",
23
- clear: "Limpiar"
9
+ clear: "Despejar"
24
10
  },
25
11
  datepicker: {
26
12
  now: "Ahora",
27
13
  today: "Hoy",
28
14
  cancel: "Cancelar",
29
- clear: "Limpiar",
15
+ clear: "Despejar",
30
16
  confirm: "Confirmar",
31
17
  selectDate: "Seleccionar fecha",
32
18
  selectTime: "Seleccionar hora",
@@ -51,7 +37,6 @@ var l = n.default = {
51
37
  month10: "octubre",
52
38
  month11: "noviembre",
53
39
  month12: "diciembre",
54
- // week: 'semana',
55
40
  weeks: {
56
41
  sun: "dom",
57
42
  mon: "lun",
@@ -82,6 +67,9 @@ var l = n.default = {
82
67
  noData: "Sin datos",
83
68
  placeholder: "Seleccionar"
84
69
  },
70
+ mention: {
71
+ loading: "Cargando"
72
+ },
85
73
  cascader: {
86
74
  noMatch: "No hay datos que coincidan",
87
75
  loading: "Cargando",
@@ -92,7 +80,13 @@ var l = n.default = {
92
80
  goto: "Ir a",
93
81
  pagesize: "/página",
94
82
  total: "Total {total}",
95
- pageClassifier: ""
83
+ pageClassifier: "",
84
+ page: "Page",
85
+ prev: "Go to previous page",
86
+ next: "Go to next page",
87
+ currentPage: "page {pager}",
88
+ prevPages: "Previous {pager} pages",
89
+ nextPages: "Next {pager} pages"
96
90
  },
97
91
  messagebox: {
98
92
  confirm: "Aceptar",
@@ -109,7 +103,7 @@ var l = n.default = {
109
103
  emptyText: "Sin Datos",
110
104
  confirmFilter: "Confirmar",
111
105
  resetFilter: "Reiniciar",
112
- clearFilter: "Limpiar",
106
+ clearFilter: "Despejar",
113
107
  sumText: "Suma"
114
108
  },
115
109
  tree: {
@@ -133,15 +127,13 @@ var l = n.default = {
133
127
  confirmButtonText: "Si",
134
128
  cancelButtonText: "No"
135
129
  },
136
- empty: {
137
- description: "Sin Datos"
130
+ carousel: {
131
+ leftArrow: "Carousel arrow left",
132
+ rightArrow: "Carousel arrow right",
133
+ indicator: "Carousel switch to index {index}"
138
134
  }
139
135
  }
140
136
  };
141
- const s = /* @__PURE__ */ c({
142
- __proto__: null,
143
- default: l
144
- }, [n]);
145
137
  export {
146
- s as e
138
+ e as default
147
139
  };
@@ -2,5 +2,5 @@ export function getColor(color: any): any;
2
2
  export function getColorLight(color: any): string;
3
3
  export default Plugin;
4
4
  declare namespace Plugin {
5
- function install(Vue: any): void;
5
+ function install(VueApp: any): void;
6
6
  }
@@ -6,5 +6,5 @@ export default Plugin;
6
6
  declare function getComponent(fieldSchema: any, componentType: any): any;
7
7
  declare function registerComponent(fieldSchema: any, componentType: any, component: any): void;
8
8
  declare namespace Plugin {
9
- function install(Vue: any): void;
9
+ function install(VueApp: any): void;
10
10
  }
@@ -1,4 +1,4 @@
1
- export default Language;
2
- declare namespace Language {
3
- function setLanguage(lang: any): Promise<void>;
4
- }
1
+ export default getLanguage;
2
+ declare function getLanguage(vueApp: any): {
3
+ setLanguage: (lang: any) => Promise<void>;
4
+ };
@@ -1,4 +1,14 @@
1
+ export namespace Icons {
2
+ export { get };
3
+ export { register };
4
+ export { registerForType };
5
+ export { registerForFormat };
6
+ }
1
7
  export default Plugin;
8
+ declare function get(key: any): any;
9
+ declare function register(key: any, className: any): void;
10
+ declare function registerForType(type: any, className: any): void;
11
+ declare function registerForFormat(format: any, className: any): void;
2
12
  declare namespace Plugin {
3
- function install(Vue: any): void;
13
+ function install(VueApp: any): void;
4
14
  }
@@ -1,4 +1,4 @@
1
1
  export default Plugin;
2
2
  declare namespace Plugin {
3
- function install(Vue: any): void;
3
+ function install(VueApp: any): void;
4
4
  }
@@ -0,0 +1,5 @@
1
+ export function getComponentName(path: any, unwantedName?: string): any;
2
+ export default Plugin;
3
+ declare namespace Plugin {
4
+ function install(VueApp: any): void;
5
+ }
@@ -1,4 +1,4 @@
1
1
  export default Plugin;
2
2
  declare namespace Plugin {
3
- function install(Vue: any): void;
3
+ function install(VueApp: any): void;
4
4
  }