@cobre-npm/ds-v3 0.125.0 → 0.126.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/README.md +50 -31
- package/dist/cobre-ds-v3-lib.es.js +27 -16
- package/dist/style.css +1 -1
- package/dist/tokens/_components.scss +1 -0
- package/dist/types/components/atoms/CobreAlert/CobreAlert.vue.d.ts +6 -0
- package/dist/types/components/atoms/CobreButton/CobreButton.vue.d.ts +6 -0
- package/dist/types/components/atoms/CobreCheckbox/CobreCheckbox.vue.d.ts +5 -0
- package/dist/types/components/atoms/CobreEmptyState/CobreEmptyState.vue.d.ts +6 -0
- package/dist/types/components/atoms/CobreTabMenuV2/CobreTabMenu.vue.d.ts +2 -0
- package/dist/types/components/atoms/CobreToastAlert/CobreToastAlert.vue.d.ts +6 -0
- package/dist/types/components/molecules/CobreBadge/CobreBadge.vue.d.ts +5 -0
- package/dist/types/components/molecules/CobreChips/CobreChips.vue.d.ts +5 -0
- package/dist/types/components/molecules/CobreDrawer/CobreDrawer.vue.d.ts +8 -0
- package/dist/types/components/molecules/CobreDropdownButton/CobreDropdownButton.vue.d.ts +7 -0
- package/dist/types/components/molecules/CobreInput/CobreInput.vue.d.ts +6 -0
- package/dist/types/components/molecules/CobreModal/CobreModal.vue.d.ts +7 -0
- package/dist/types/components/molecules/CobreSelect/CobreSelect.vue.d.ts +8 -0
- package/dist/types/components/molecules/CobreSnackBar/CobreSnackBar.vue.d.ts +5 -0
- package/dist/types/components/molecules/CobreTextArea/CobreTextArea.vue.d.ts +6 -0
- package/dist/types/components/organisms/CobreAccountPickerModal/CobreAccountPickerModal.vue.d.ts +7 -0
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -1,52 +1,71 @@
|
|
|
1
|
-
# cobre-
|
|
1
|
+
# Cobre Design System V3 (`@cobre-npm/ds-v3`)
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Vue 3 + TypeScript component library for the Cobre platform, documented and developed through **Storybook**.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
|
8
|
-
|
|
9
|
-
## Type Support for `.vue` Imports in TS
|
|
10
|
-
|
|
11
|
-
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
|
|
12
|
-
|
|
13
|
-
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
|
|
14
|
-
|
|
15
|
-
1. Disable the built-in TypeScript Extension
|
|
16
|
-
1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette
|
|
17
|
-
2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
|
|
18
|
-
2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
|
|
5
|
+
> **Heads up:** this project uses **pnpm**, not npm. Running `npm install` will generate a stray `package-lock.json` and can produce a broken `node_modules`. Always use `pnpm`.
|
|
19
6
|
|
|
20
|
-
##
|
|
7
|
+
## Prerequisites
|
|
21
8
|
|
|
22
|
-
|
|
9
|
+
- **Node.js** ≥ 20 (CI uses Node 24).
|
|
10
|
+
- **pnpm** ≥ 10. The exact version is pinned via the `packageManager` field in `package.json`, so the simplest setup is to let [corepack](https://nodejs.org/api/corepack.html) match it:
|
|
11
|
+
```sh
|
|
12
|
+
corepack enable
|
|
13
|
+
```
|
|
14
|
+
To install manually instead: `npm install -g pnpm`.
|
|
23
15
|
|
|
24
16
|
## Project Setup
|
|
25
17
|
|
|
26
18
|
```sh
|
|
27
|
-
|
|
19
|
+
pnpm install
|
|
28
20
|
```
|
|
29
21
|
|
|
30
|
-
|
|
22
|
+
On a fresh checkout, pnpm may prompt you to approve build scripts for native dependencies (`esbuild`, `@swc/core`, `@parcel/watcher`, `unrs-resolver`, `vue-demi`). If it does, approve them:
|
|
31
23
|
|
|
32
24
|
```sh
|
|
33
|
-
|
|
25
|
+
pnpm approve-builds
|
|
34
26
|
```
|
|
35
27
|
|
|
36
|
-
|
|
28
|
+
Then re-run `pnpm install` if needed.
|
|
37
29
|
|
|
38
|
-
|
|
39
|
-
npm run build
|
|
40
|
-
```
|
|
30
|
+
## Develop with Storybook (primary workflow)
|
|
41
31
|
|
|
42
|
-
|
|
32
|
+
This is a component library — day-to-day development happens in Storybook, which renders every component with its variants and docs:
|
|
43
33
|
|
|
44
34
|
```sh
|
|
45
|
-
|
|
35
|
+
pnpm storybook
|
|
46
36
|
```
|
|
47
37
|
|
|
48
|
-
|
|
38
|
+
Opens at [http://localhost:6006](http://localhost:6006).
|
|
49
39
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
40
|
+
> `pnpm dev` (plain `vite`) only serves the minimal `src/main.ts` / `App.vue` harness. It is **not** the component gallery — use `pnpm storybook` for normal development.
|
|
41
|
+
|
|
42
|
+
## Common Commands
|
|
43
|
+
|
|
44
|
+
| Command | What it does |
|
|
45
|
+
|---|---|
|
|
46
|
+
| `pnpm install` | Install dependencies |
|
|
47
|
+
| `pnpm storybook` | Run Storybook dev server on port 6006 (main dev workflow) |
|
|
48
|
+
| `pnpm dev` | Bare Vite dev harness (`src/main.ts`) — rarely needed |
|
|
49
|
+
| `pnpm build` | Type-check + build the publishable library into `dist/` |
|
|
50
|
+
| `pnpm build-storybook` | Build the static Storybook site |
|
|
51
|
+
| `pnpm test:unit` | Run unit tests with [Vitest](https://vitest.dev/) |
|
|
52
|
+
| `pnpm test` | Run Storybook interaction tests (test-runner) |
|
|
53
|
+
| `pnpm lint` | Lint & auto-fix with [ESLint](https://eslint.org/) |
|
|
54
|
+
|
|
55
|
+
## Recommended IDE Setup
|
|
56
|
+
|
|
57
|
+
[VSCode](https://code.visualstudio.com/) + [Vue - Official (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (disable Vetur).
|
|
58
|
+
|
|
59
|
+
### Type Support for `.vue` Imports in TS
|
|
60
|
+
|
|
61
|
+
TypeScript can't type `.vue` imports on its own, so we use `vue-tsc` for type checking and the Vue (Volar) extension to make the editor's TS language service aware of `.vue` types.
|
|
62
|
+
|
|
63
|
+
## Project Structure & Conventions
|
|
64
|
+
|
|
65
|
+
See [`CLAUDE.md`](./CLAUDE.md) for the full architecture overview: Atomic Design layout (`atoms`/`molecules`/`organisms`), the `Cobre*` / `co-` naming conventions, the SCSS token system, and how to add a new component (each lives in its own folder with a `.vue`, a `.stories.ts`, and an `index.ts`, and must be exported from `src/components/index.ts` and `src/index.ts`).
|
|
66
|
+
|
|
67
|
+
## Troubleshooting
|
|
68
|
+
|
|
69
|
+
- **`npm run dev` / `npm install` fails or behaves oddly** — you're using the wrong package manager. Delete any `package-lock.json`, then use `pnpm install`.
|
|
70
|
+
- **pnpm asks to approve build scripts** — run `pnpm approve-builds`, then re-run `pnpm install` if needed.
|
|
71
|
+
- **Stale or broken `node_modules`** — `rm -rf node_modules && pnpm install`.
|
|
@@ -241,30 +241,40 @@ const xf = ["title", "data-bs-original-title"], Of = /* @__PURE__ */ le({
|
|
|
241
241
|
}
|
|
242
242
|
}), ya = /* @__PURE__ */ Me(Nf, [["__scopeId", "data-v-e3a8d5c2"]]), Rf = le({
|
|
243
243
|
props: {
|
|
244
|
+
// Visual style. 'primary' for the main action, 'secondary'/'ghost' for lower
|
|
245
|
+
// emphasis, 'link' to render as inline text, 'toolbar' inside toolbars,
|
|
246
|
+
// 'icon'/'icon-cloudy' for icon-only buttons, 'chip'/'filter' for compact pills.
|
|
244
247
|
theme: {
|
|
245
248
|
type: String,
|
|
246
249
|
default: "primary"
|
|
247
250
|
},
|
|
251
|
+
// Color emphasis on top of the theme. 'default' for standard contrast,
|
|
252
|
+
// 'light' for use on darker/colored surfaces.
|
|
248
253
|
color: {
|
|
249
254
|
type: String,
|
|
250
255
|
default: "default"
|
|
251
256
|
},
|
|
257
|
+
// Button size. 'big'/'medium'/'small' for fixed sizes, 'auto' to fit content.
|
|
252
258
|
size: {
|
|
253
259
|
type: String,
|
|
254
260
|
default: "medium"
|
|
255
261
|
},
|
|
262
|
+
// Text shown inside the button. Ignored when the `content` slot is provided.
|
|
256
263
|
label: {
|
|
257
264
|
type: String,
|
|
258
265
|
default: ""
|
|
259
266
|
},
|
|
267
|
+
// When true, the button is non-interactive and visually dimmed.
|
|
260
268
|
disabled: {
|
|
261
269
|
type: Boolean,
|
|
262
270
|
default: !1
|
|
263
271
|
},
|
|
272
|
+
// When true, shows a spinner and disables interaction. Use during async submits.
|
|
264
273
|
isLoading: {
|
|
265
274
|
type: Boolean,
|
|
266
275
|
default: !1
|
|
267
276
|
},
|
|
277
|
+
// When true, renders inline (display: inline) instead of centered block layout.
|
|
268
278
|
isInline: {
|
|
269
279
|
type: Boolean,
|
|
270
280
|
default: !1
|
|
@@ -564,7 +574,7 @@ const Hu = /* @__PURE__ */ Me(Uf, [["render", zf], ["__scopeId", "data-v-4a47d72
|
|
|
564
574
|
])
|
|
565
575
|
]));
|
|
566
576
|
}
|
|
567
|
-
}), gP = /* @__PURE__ */ Me(pp, [["__scopeId", "data-v-
|
|
577
|
+
}), gP = /* @__PURE__ */ Me(pp, [["__scopeId", "data-v-25ba15cf"]]), mp = { class: "co-widget-state__icon-circle co-center rounded-circle co-mb-4" }, hp = { class: "co-widget-state__title co-label co-label--md co-fw-500 mb-0" }, vp = {
|
|
568
578
|
key: 0,
|
|
569
579
|
class: "co-label co-label--sm co-text-secondary mb-0"
|
|
570
580
|
}, gp = /* @__PURE__ */ le({
|
|
@@ -1798,7 +1808,8 @@ const Mm = /* @__PURE__ */ Me($m, [["render", Om], ["__scopeId", "data-v-6ff0f06
|
|
|
1798
1808
|
tabs: {},
|
|
1799
1809
|
modelValue: {},
|
|
1800
1810
|
direction: {},
|
|
1801
|
-
hasBorder: { type: Boolean }
|
|
1811
|
+
hasBorder: { type: Boolean },
|
|
1812
|
+
size: {}
|
|
1802
1813
|
},
|
|
1803
1814
|
emits: ["update:modelValue", "select"],
|
|
1804
1815
|
setup(a, { emit: e }) {
|
|
@@ -1809,11 +1820,11 @@ const Mm = /* @__PURE__ */ Me($m, [["render", Om], ["__scopeId", "data-v-6ff0f06
|
|
|
1809
1820
|
const u = et("co-tooltip");
|
|
1810
1821
|
return p(), b("nav", Pm, [
|
|
1811
1822
|
C("ul", {
|
|
1812
|
-
class: N(["co-tabs d-flex justify-content-start list-inline m-0", [i.direction === "column" && "flex-column", { "co-tabs--border-bottom": i.hasBorder }]])
|
|
1823
|
+
class: N(["co-tabs d-flex justify-content-start list-inline m-0", [i.direction === "column" && "flex-column", { "co-tabs--border-bottom": i.hasBorder }, i.size && `co-tabs--${i.size}`]])
|
|
1813
1824
|
}, [
|
|
1814
1825
|
(p(!0), b(_e, null, Oe(i.tabs, (f) => (p(), b("li", {
|
|
1815
|
-
key: f.name,
|
|
1816
1826
|
id: f.id,
|
|
1827
|
+
key: f.name,
|
|
1817
1828
|
class: N(["co-tabs__item d-flex justify-content-between align-items-center text-nowrap", [
|
|
1818
1829
|
i.direction === "column" ? "co-tabs__item--column spaced-col" : "spaced-row",
|
|
1819
1830
|
l(f),
|
|
@@ -1849,7 +1860,7 @@ const Mm = /* @__PURE__ */ Me($m, [["render", Om], ["__scopeId", "data-v-6ff0f06
|
|
|
1849
1860
|
]);
|
|
1850
1861
|
};
|
|
1851
1862
|
}
|
|
1852
|
-
}), kP = /* @__PURE__ */ Me(Lm, [["__scopeId", "data-v-
|
|
1863
|
+
}), kP = /* @__PURE__ */ Me(Lm, [["__scopeId", "data-v-3eb3aadb"]]), Im = { class: "d-flex align-items-center" }, Nm = { class: "d-flex" }, Rm = {
|
|
1853
1864
|
key: 1,
|
|
1854
1865
|
class: "mb-0"
|
|
1855
1866
|
}, Vm = ["src"], Bm = {
|
|
@@ -1914,7 +1925,7 @@ const Mm = /* @__PURE__ */ Me($m, [["render", Om], ["__scopeId", "data-v-6ff0f06
|
|
|
1914
1925
|
], 2);
|
|
1915
1926
|
};
|
|
1916
1927
|
}
|
|
1917
|
-
}), CP = /* @__PURE__ */ Me(Hm, [["__scopeId", "data-v-d805fab8"]]), Wm = "data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12.1599%208.24C12.1599%207.00288%2013.1628%206%2014.3999%206H31.1999C32.437%206%2033.4399%207.00288%2033.4399%208.24V31.76C33.4399%2032.9971%2032.437%2034%2031.1999%2034H14.3999C13.1628%2034%2012.1599%2032.9971%2012.1599%2031.76V8.24Z'%20fill='url(%23paint0_linear_7669_92216)'/%3e%3cpath%20d='M7.67993%2014.9598C7.67993%2014.3413%208.18137%2013.8398%208.79993%2013.8398H19.9999C20.6185%2013.8398%2021.1199%2014.3413%2021.1199%2014.9598V26.1598C21.1199%2026.7784%2020.6185%2027.2798%2019.9999%2027.2798H8.79993C8.18137%2027.2798%207.67993%2026.7784%207.67993%2026.1598V14.9598Z'%20fill='%230B2A1A'/%3e%3cpath%20d='M6.56006%2013.8402C6.56006%2013.2217%207.0615%2012.7202%207.68006%2012.7202H18.8801C19.4986%2012.7202%2020.0001%2013.2217%2020.0001%2013.8402V25.0402C20.0001%2025.6588%2019.4986%2026.1602%2018.8801%2026.1602H7.68006C7.0615%2026.1602%206.56006%2025.6588%206.56006%2025.0402V13.8402Z'%20fill='%23128045'/%3e%3cpath%20d='M11.2425%2018.7174H10.4987C10.4775%2018.5955%2010.4384%2018.4874%2010.3814%2018.3933C10.3244%2018.2978%2010.2534%2018.217%2010.1686%2018.1507C10.0837%2018.0844%209.98696%2018.0347%209.87825%2018.0015C9.77086%2017.9671%209.65486%2017.9498%209.53024%2017.9498C9.30883%2017.9498%209.11262%2018.0055%208.9416%2018.1169C8.77058%2018.2269%208.63668%2018.3886%208.53989%2018.6021C8.44311%2018.8142%208.39472%2019.0734%208.39472%2019.3797C8.39472%2019.6912%208.44311%2019.9537%208.53989%2020.1672C8.638%2020.3793%208.7719%2020.5397%208.9416%2020.6484C9.11262%2020.7558%209.30817%2020.8095%209.52825%2020.8095C9.65022%2020.8095%209.76423%2020.7936%209.87029%2020.7618C9.97768%2020.7286%2010.0738%2020.6802%2010.1586%2020.6166C10.2448%2020.5529%2010.3171%2020.4747%2010.3754%2020.3819C10.4351%2020.2891%2010.4762%2020.1831%2010.4987%2020.0637L11.2425%2020.0677C11.2146%2020.2613%2011.1543%2020.4429%2011.0615%2020.6126C10.97%2020.7823%2010.85%2020.9321%2010.7015%2021.062C10.5531%2021.1906%2010.3794%2021.2914%2010.1805%2021.3643C9.98166%2021.4359%209.76092%2021.4717%209.5183%2021.4717C9.16035%2021.4717%208.84084%2021.3888%208.55978%2021.2231C8.27872%2021.0574%208.05732%2020.8181%207.89558%2020.5052C7.73383%2020.1923%207.65296%2019.8172%207.65296%2019.3797C7.65296%2018.9408%207.7345%2018.5656%207.89757%2018.2541C8.06063%2017.9412%208.2827%2017.7019%208.56376%2017.5362C8.84482%2017.3705%209.163%2017.2876%209.5183%2017.2876C9.74501%2017.2876%209.9558%2017.3194%2010.1507%2017.3831C10.3456%2017.4467%2010.5193%2017.5402%2010.6717%2017.6635C10.8242%2017.7854%2010.9495%2017.9352%2011.0476%2018.1129C11.147%2018.2892%2011.212%2018.4907%2011.2425%2018.7174ZM14.1314%2018.4629C14.1129%2018.2892%2014.0347%2018.154%2013.8968%2018.0572C13.7602%2017.9604%2013.5826%2017.912%2013.3638%2017.912C13.21%2017.912%2013.0781%2017.9352%2012.9681%2017.9816C12.8581%2018.028%2012.7739%2018.091%2012.7155%2018.1706C12.6572%2018.2501%2012.6274%2018.3409%2012.626%2018.443C12.626%2018.5279%2012.6453%2018.6014%2012.6837%2018.6637C12.7235%2018.7261%2012.7772%2018.7791%2012.8448%2018.8228C12.9124%2018.8653%2012.9873%2018.9011%2013.0695%2018.9302C13.1517%2018.9594%2013.2346%2018.9839%2013.3181%2019.0038L13.6999%2019.0993C13.8537%2019.135%2014.0015%2019.1834%2014.1434%2019.2444C14.2866%2019.3054%2014.4145%2019.3823%2014.5272%2019.4751C14.6412%2019.5679%2014.7313%2019.6799%2014.7976%2019.8112C14.8639%2019.9424%2014.8971%2020.0962%2014.8971%2020.2725C14.8971%2020.5112%2014.8361%2020.7213%2014.7141%2020.9029C14.5921%2021.0833%2014.4158%2021.2244%2014.1851%2021.3265C13.9558%2021.4273%2013.678%2021.4777%2013.3519%2021.4777C13.035%2021.4777%2012.7599%2021.4286%2012.5266%2021.3305C12.2946%2021.2324%2012.113%2021.0892%2011.9817%2020.901C11.8518%2020.7127%2011.7815%2020.4833%2011.7709%2020.2129H12.4968C12.5074%2020.3547%2012.5511%2020.4727%2012.628%2020.5669C12.7049%2020.661%2012.805%2020.7313%2012.9283%2020.7777C13.0529%2020.8241%2013.1921%2020.8473%2013.3459%2020.8473C13.5063%2020.8473%2013.6469%2020.8234%2013.7675%2020.7757C13.8895%2020.7266%2013.9849%2020.659%2014.0539%2020.5728C14.1228%2020.4853%2014.158%2020.3833%2014.1593%2020.2666C14.158%2020.1605%2014.1268%2020.073%2014.0658%2020.0041C14.0048%2019.9338%2013.9193%2019.8755%2013.8093%2019.8291C13.7006%2019.7814%2013.5733%2019.7389%2013.4275%2019.7018L12.9641%2019.5825C12.6287%2019.4963%2012.3635%2019.3657%2012.1687%2019.1907C11.9751%2019.0144%2011.8783%2018.7804%2011.8783%2018.4887C11.8783%2018.2488%2011.9433%2018.0386%2012.0732%2017.8583C12.2045%2017.678%2012.3828%2017.5382%2012.6081%2017.4387C12.8335%2017.338%2013.0887%2017.2876%2013.3738%2017.2876C13.6628%2017.2876%2013.916%2017.338%2014.1334%2017.4387C14.3522%2017.5382%2014.5239%2017.6767%2014.6485%2017.8544C14.7731%2018.0307%2014.8374%2018.2335%2014.8414%2018.4629H14.1314ZM16.0997%2017.3433L17.1596%2020.549H17.2014L18.2594%2017.3433H19.0707L17.6349%2021.416H16.7241L15.2903%2017.3433H16.0997Z'%20fill='white'/%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_7669_92216'%20x1='22.7999'%20y1='6'%20x2='22.7999'%20y2='34'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%2321A366'/%3e%3cstop%20offset='1'%20stop-color='%230C3D26'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e", Um = "data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12.16%208.24C12.16%207.00288%2013.1629%206%2014.4%206H31.2C32.4371%206%2033.44%207.00288%2033.44%208.24V31.76C33.44%2032.9971%2032.4371%2034%2031.2%2034H14.4C13.1629%2034%2012.16%2032.9971%2012.16%2031.76V8.24Z'%20fill='url(%23paint0_linear_7669_91146)'/%3e%3cpath%20d='M7.67999%2014.9598C7.67999%2014.3413%208.18143%2013.8398%208.79999%2013.8398H20C20.6186%2013.8398%2021.12%2014.3413%2021.12%2014.9598V26.1598C21.12%2026.7784%2020.6186%2027.2798%2020%2027.2798H8.79999C8.18143%2027.2798%207.67999%2026.7784%207.67999%2026.1598V14.9598Z'%20fill='%23093C6B'/%3e%3cpath%20d='M6.56%2013.8402C6.56%2013.2217%207.06144%2012.7202%207.68%2012.7202H18.88C19.4986%2012.7202%2020%2013.2217%2020%2013.8402V25.0402C20%2025.6588%2019.4986%2026.1602%2018.88%2026.1602H7.68C7.06144%2026.1602%206.56%2025.6588%206.56%2025.0402V13.8402Z'%20fill='%232B66A0'/%3e%3cpath%20d='M7.54079%2020.0358V19.234L12.2944%2016.9288V18.0205L8.78647%2019.6206L8.81869%2019.5562V19.7101L8.78647%2019.6492L12.2944%2021.2457V22.341L7.54079%2020.0358ZM19.0079%2020.0358L14.2542%2022.341V21.2457L17.7622%2019.6492L17.7264%2019.7101V19.5562L17.7622%2019.6206L14.2542%2018.0205V16.9288L19.0079%2019.234V20.0358Z'%20fill='white'/%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_7669_91146'%20x1='22.8'%20y1='6'%20x2='22.8'%20y2='34'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%236AA1D7'/%3e%3cstop%20offset='1'%20stop-color='%23093C6B'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e", jm = "data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12.4401%208.24C12.4401%207.00288%2013.4429%206%2014.6801%206H31.4801C32.7172%206%2033.7201%207.00288%2033.7201%208.24V31.76C33.7201%2032.9971%2032.7172%2034%2031.4801%2034H14.6801C13.4429%2034%2012.4401%2032.9971%2012.4401%2031.76V8.24Z'%20fill='url(%23paint0_linear_7669_91952)'/%3e%3cpath%20d='M7.40002%2014.9598C7.40002%2014.3413%207.90147%2013.8398%208.52002%2013.8398H19.72C20.3386%2013.8398%2020.84%2014.3413%2020.84%2014.9598V26.1598C20.84%2026.7784%2020.3386%2027.2798%2019.72%2027.2798H8.52002C7.90147%2027.2798%207.40002%2026.7784%207.40002%2026.1598V14.9598Z'%20fill='%23093C6B'/%3e%3cpath%20d='M6.28003%2013.8402C6.28003%2013.2217%206.78147%2012.7202%207.40003%2012.7202H18.6C19.2186%2012.7202%2019.72%2013.2217%2019.72%2013.8402V25.0402C19.72%2025.6588%2019.2186%2026.1602%2018.6%2026.1602H7.40003C6.78147%2026.1602%206.28003%2025.6588%206.28003%2025.0402V13.8402Z'%20fill='%232B66A0'/%3e%3cpath%20d='M7.5928%2018.5457V17.9273H10.8422V18.5457H9.58343V22H8.85161V18.5457H7.5928ZM12.0851%2017.9273L12.982%2019.4188H13.0138L13.9147%2017.9273H14.7559L13.501%2019.9636L14.7758%2022H13.9206L13.0138%2020.5185H12.982L12.0752%2022H11.2241L12.5107%2019.9636L11.24%2017.9273H12.0851ZM15.1561%2018.5457V17.9273H18.4055V18.5457H17.1467V22H16.4149V18.5457H15.1561Z'%20fill='white'/%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_7669_91952'%20x1='23.0801'%20y1='6'%20x2='23.0801'%20y2='34'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%236AA1D7'/%3e%3cstop%20offset='1'%20stop-color='%23093C6B'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e", zm = "data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12.16%208.24C12.16%207.00288%2013.1629%206%2014.4%206H31.2C32.4372%206%2033.44%207.00288%2033.44%208.24V31.76C33.44%2032.9971%2032.4372%2034%2031.2%2034H14.4C13.1629%2034%2012.16%2032.9971%2012.16%2031.76V8.24Z'%20fill='url(%23paint0_linear_7669_91114)'/%3e%3cpath%20d='M7.68005%2014.9598C7.68005%2014.3413%208.18149%2013.8398%208.80005%2013.8398H20.0001C20.6186%2013.8398%2021.1201%2014.3413%2021.1201%2014.9598V26.1598C21.1201%2026.7784%2020.6186%2027.2798%2020.0001%2027.2798H8.80005C8.18149%2027.2798%207.68005%2026.7784%207.68005%2026.1598V14.9598Z'%20fill='%230B2A1A'/%3e%3cpath%20d='M6.56006%2013.8402C6.56006%2013.2217%207.0615%2012.7202%207.68006%2012.7202H18.8801C19.4986%2012.7202%2020.0001%2013.2217%2020.0001%2013.8402V25.0402C20.0001%2025.6588%2019.4986%2026.1602%2018.8801%2026.1602H7.68006C7.0615%2026.1602%206.56006%2025.6588%206.56006%2025.0402V13.8402Z'%20fill='%23128045'/%3e%3cpath%20d='M11.4152%2014.9033L13.3028%2018.2331L15.2072%2014.9033H17.0279L14.3608%2019.1797L17.0502%2023.4561H15.2294L13.3028%2020.2599L11.3818%2023.4561H9.55545L12.217%2019.1797L9.58886%2014.9033H11.4152Z'%20fill='white'/%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_7669_91114'%20x1='22.8'%20y1='6'%20x2='22.8'%20y2='34'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%2321A366'/%3e%3cstop%20offset='1'%20stop-color='%230C3D26'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e", qm = { class: "co-uploader" }, Xm = ["accept"], Km = { class: "co-uploader__title co-label co-label--md text-center co-text-primary-95 mb-0 d-flex align-items-center co-mt-4 co-pt-6" }, Gm = { class: "co-text-brand co-fw-500 co-me-6" }, Qm = {
|
|
1928
|
+
}), CP = /* @__PURE__ */ Me(Hm, [["__scopeId", "data-v-3184e8fd"]]), Wm = "data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12.1599%208.24C12.1599%207.00288%2013.1628%206%2014.3999%206H31.1999C32.437%206%2033.4399%207.00288%2033.4399%208.24V31.76C33.4399%2032.9971%2032.437%2034%2031.1999%2034H14.3999C13.1628%2034%2012.1599%2032.9971%2012.1599%2031.76V8.24Z'%20fill='url(%23paint0_linear_7669_92216)'/%3e%3cpath%20d='M7.67993%2014.9598C7.67993%2014.3413%208.18137%2013.8398%208.79993%2013.8398H19.9999C20.6185%2013.8398%2021.1199%2014.3413%2021.1199%2014.9598V26.1598C21.1199%2026.7784%2020.6185%2027.2798%2019.9999%2027.2798H8.79993C8.18137%2027.2798%207.67993%2026.7784%207.67993%2026.1598V14.9598Z'%20fill='%230B2A1A'/%3e%3cpath%20d='M6.56006%2013.8402C6.56006%2013.2217%207.0615%2012.7202%207.68006%2012.7202H18.8801C19.4986%2012.7202%2020.0001%2013.2217%2020.0001%2013.8402V25.0402C20.0001%2025.6588%2019.4986%2026.1602%2018.8801%2026.1602H7.68006C7.0615%2026.1602%206.56006%2025.6588%206.56006%2025.0402V13.8402Z'%20fill='%23128045'/%3e%3cpath%20d='M11.2425%2018.7174H10.4987C10.4775%2018.5955%2010.4384%2018.4874%2010.3814%2018.3933C10.3244%2018.2978%2010.2534%2018.217%2010.1686%2018.1507C10.0837%2018.0844%209.98696%2018.0347%209.87825%2018.0015C9.77086%2017.9671%209.65486%2017.9498%209.53024%2017.9498C9.30883%2017.9498%209.11262%2018.0055%208.9416%2018.1169C8.77058%2018.2269%208.63668%2018.3886%208.53989%2018.6021C8.44311%2018.8142%208.39472%2019.0734%208.39472%2019.3797C8.39472%2019.6912%208.44311%2019.9537%208.53989%2020.1672C8.638%2020.3793%208.7719%2020.5397%208.9416%2020.6484C9.11262%2020.7558%209.30817%2020.8095%209.52825%2020.8095C9.65022%2020.8095%209.76423%2020.7936%209.87029%2020.7618C9.97768%2020.7286%2010.0738%2020.6802%2010.1586%2020.6166C10.2448%2020.5529%2010.3171%2020.4747%2010.3754%2020.3819C10.4351%2020.2891%2010.4762%2020.1831%2010.4987%2020.0637L11.2425%2020.0677C11.2146%2020.2613%2011.1543%2020.4429%2011.0615%2020.6126C10.97%2020.7823%2010.85%2020.9321%2010.7015%2021.062C10.5531%2021.1906%2010.3794%2021.2914%2010.1805%2021.3643C9.98166%2021.4359%209.76092%2021.4717%209.5183%2021.4717C9.16035%2021.4717%208.84084%2021.3888%208.55978%2021.2231C8.27872%2021.0574%208.05732%2020.8181%207.89558%2020.5052C7.73383%2020.1923%207.65296%2019.8172%207.65296%2019.3797C7.65296%2018.9408%207.7345%2018.5656%207.89757%2018.2541C8.06063%2017.9412%208.2827%2017.7019%208.56376%2017.5362C8.84482%2017.3705%209.163%2017.2876%209.5183%2017.2876C9.74501%2017.2876%209.9558%2017.3194%2010.1507%2017.3831C10.3456%2017.4467%2010.5193%2017.5402%2010.6717%2017.6635C10.8242%2017.7854%2010.9495%2017.9352%2011.0476%2018.1129C11.147%2018.2892%2011.212%2018.4907%2011.2425%2018.7174ZM14.1314%2018.4629C14.1129%2018.2892%2014.0347%2018.154%2013.8968%2018.0572C13.7602%2017.9604%2013.5826%2017.912%2013.3638%2017.912C13.21%2017.912%2013.0781%2017.9352%2012.9681%2017.9816C12.8581%2018.028%2012.7739%2018.091%2012.7155%2018.1706C12.6572%2018.2501%2012.6274%2018.3409%2012.626%2018.443C12.626%2018.5279%2012.6453%2018.6014%2012.6837%2018.6637C12.7235%2018.7261%2012.7772%2018.7791%2012.8448%2018.8228C12.9124%2018.8653%2012.9873%2018.9011%2013.0695%2018.9302C13.1517%2018.9594%2013.2346%2018.9839%2013.3181%2019.0038L13.6999%2019.0993C13.8537%2019.135%2014.0015%2019.1834%2014.1434%2019.2444C14.2866%2019.3054%2014.4145%2019.3823%2014.5272%2019.4751C14.6412%2019.5679%2014.7313%2019.6799%2014.7976%2019.8112C14.8639%2019.9424%2014.8971%2020.0962%2014.8971%2020.2725C14.8971%2020.5112%2014.8361%2020.7213%2014.7141%2020.9029C14.5921%2021.0833%2014.4158%2021.2244%2014.1851%2021.3265C13.9558%2021.4273%2013.678%2021.4777%2013.3519%2021.4777C13.035%2021.4777%2012.7599%2021.4286%2012.5266%2021.3305C12.2946%2021.2324%2012.113%2021.0892%2011.9817%2020.901C11.8518%2020.7127%2011.7815%2020.4833%2011.7709%2020.2129H12.4968C12.5074%2020.3547%2012.5511%2020.4727%2012.628%2020.5669C12.7049%2020.661%2012.805%2020.7313%2012.9283%2020.7777C13.0529%2020.8241%2013.1921%2020.8473%2013.3459%2020.8473C13.5063%2020.8473%2013.6469%2020.8234%2013.7675%2020.7757C13.8895%2020.7266%2013.9849%2020.659%2014.0539%2020.5728C14.1228%2020.4853%2014.158%2020.3833%2014.1593%2020.2666C14.158%2020.1605%2014.1268%2020.073%2014.0658%2020.0041C14.0048%2019.9338%2013.9193%2019.8755%2013.8093%2019.8291C13.7006%2019.7814%2013.5733%2019.7389%2013.4275%2019.7018L12.9641%2019.5825C12.6287%2019.4963%2012.3635%2019.3657%2012.1687%2019.1907C11.9751%2019.0144%2011.8783%2018.7804%2011.8783%2018.4887C11.8783%2018.2488%2011.9433%2018.0386%2012.0732%2017.8583C12.2045%2017.678%2012.3828%2017.5382%2012.6081%2017.4387C12.8335%2017.338%2013.0887%2017.2876%2013.3738%2017.2876C13.6628%2017.2876%2013.916%2017.338%2014.1334%2017.4387C14.3522%2017.5382%2014.5239%2017.6767%2014.6485%2017.8544C14.7731%2018.0307%2014.8374%2018.2335%2014.8414%2018.4629H14.1314ZM16.0997%2017.3433L17.1596%2020.549H17.2014L18.2594%2017.3433H19.0707L17.6349%2021.416H16.7241L15.2903%2017.3433H16.0997Z'%20fill='white'/%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_7669_92216'%20x1='22.7999'%20y1='6'%20x2='22.7999'%20y2='34'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%2321A366'/%3e%3cstop%20offset='1'%20stop-color='%230C3D26'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e", Um = "data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12.16%208.24C12.16%207.00288%2013.1629%206%2014.4%206H31.2C32.4371%206%2033.44%207.00288%2033.44%208.24V31.76C33.44%2032.9971%2032.4371%2034%2031.2%2034H14.4C13.1629%2034%2012.16%2032.9971%2012.16%2031.76V8.24Z'%20fill='url(%23paint0_linear_7669_91146)'/%3e%3cpath%20d='M7.67999%2014.9598C7.67999%2014.3413%208.18143%2013.8398%208.79999%2013.8398H20C20.6186%2013.8398%2021.12%2014.3413%2021.12%2014.9598V26.1598C21.12%2026.7784%2020.6186%2027.2798%2020%2027.2798H8.79999C8.18143%2027.2798%207.67999%2026.7784%207.67999%2026.1598V14.9598Z'%20fill='%23093C6B'/%3e%3cpath%20d='M6.56%2013.8402C6.56%2013.2217%207.06144%2012.7202%207.68%2012.7202H18.88C19.4986%2012.7202%2020%2013.2217%2020%2013.8402V25.0402C20%2025.6588%2019.4986%2026.1602%2018.88%2026.1602H7.68C7.06144%2026.1602%206.56%2025.6588%206.56%2025.0402V13.8402Z'%20fill='%232B66A0'/%3e%3cpath%20d='M7.54079%2020.0358V19.234L12.2944%2016.9288V18.0205L8.78647%2019.6206L8.81869%2019.5562V19.7101L8.78647%2019.6492L12.2944%2021.2457V22.341L7.54079%2020.0358ZM19.0079%2020.0358L14.2542%2022.341V21.2457L17.7622%2019.6492L17.7264%2019.7101V19.5562L17.7622%2019.6206L14.2542%2018.0205V16.9288L19.0079%2019.234V20.0358Z'%20fill='white'/%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_7669_91146'%20x1='22.8'%20y1='6'%20x2='22.8'%20y2='34'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%236AA1D7'/%3e%3cstop%20offset='1'%20stop-color='%23093C6B'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e", jm = "data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12.4401%208.24C12.4401%207.00288%2013.4429%206%2014.6801%206H31.4801C32.7172%206%2033.7201%207.00288%2033.7201%208.24V31.76C33.7201%2032.9971%2032.7172%2034%2031.4801%2034H14.6801C13.4429%2034%2012.4401%2032.9971%2012.4401%2031.76V8.24Z'%20fill='url(%23paint0_linear_7669_91952)'/%3e%3cpath%20d='M7.40002%2014.9598C7.40002%2014.3413%207.90147%2013.8398%208.52002%2013.8398H19.72C20.3386%2013.8398%2020.84%2014.3413%2020.84%2014.9598V26.1598C20.84%2026.7784%2020.3386%2027.2798%2019.72%2027.2798H8.52002C7.90147%2027.2798%207.40002%2026.7784%207.40002%2026.1598V14.9598Z'%20fill='%23093C6B'/%3e%3cpath%20d='M6.28003%2013.8402C6.28003%2013.2217%206.78147%2012.7202%207.40003%2012.7202H18.6C19.2186%2012.7202%2019.72%2013.2217%2019.72%2013.8402V25.0402C19.72%2025.6588%2019.2186%2026.1602%2018.6%2026.1602H7.40003C6.78147%2026.1602%206.28003%2025.6588%206.28003%2025.0402V13.8402Z'%20fill='%232B66A0'/%3e%3cpath%20d='M7.5928%2018.5457V17.9273H10.8422V18.5457H9.58343V22H8.85161V18.5457H7.5928ZM12.0851%2017.9273L12.982%2019.4188H13.0138L13.9147%2017.9273H14.7559L13.501%2019.9636L14.7758%2022H13.9206L13.0138%2020.5185H12.982L12.0752%2022H11.2241L12.5107%2019.9636L11.24%2017.9273H12.0851ZM15.1561%2018.5457V17.9273H18.4055V18.5457H17.1467V22H16.4149V18.5457H15.1561Z'%20fill='white'/%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_7669_91952'%20x1='23.0801'%20y1='6'%20x2='23.0801'%20y2='34'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%236AA1D7'/%3e%3cstop%20offset='1'%20stop-color='%23093C6B'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e", zm = "data:image/svg+xml,%3csvg%20width='40'%20height='40'%20viewBox='0%200%2040%2040'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M12.16%208.24C12.16%207.00288%2013.1629%206%2014.4%206H31.2C32.4372%206%2033.44%207.00288%2033.44%208.24V31.76C33.44%2032.9971%2032.4372%2034%2031.2%2034H14.4C13.1629%2034%2012.16%2032.9971%2012.16%2031.76V8.24Z'%20fill='url(%23paint0_linear_7669_91114)'/%3e%3cpath%20d='M7.68005%2014.9598C7.68005%2014.3413%208.18149%2013.8398%208.80005%2013.8398H20.0001C20.6186%2013.8398%2021.1201%2014.3413%2021.1201%2014.9598V26.1598C21.1201%2026.7784%2020.6186%2027.2798%2020.0001%2027.2798H8.80005C8.18149%2027.2798%207.68005%2026.7784%207.68005%2026.1598V14.9598Z'%20fill='%230B2A1A'/%3e%3cpath%20d='M6.56006%2013.8402C6.56006%2013.2217%207.0615%2012.7202%207.68006%2012.7202H18.8801C19.4986%2012.7202%2020.0001%2013.2217%2020.0001%2013.8402V25.0402C20.0001%2025.6588%2019.4986%2026.1602%2018.8801%2026.1602H7.68006C7.0615%2026.1602%206.56006%2025.6588%206.56006%2025.0402V13.8402Z'%20fill='%23128045'/%3e%3cpath%20d='M11.4152%2014.9033L13.3028%2018.2331L15.2072%2014.9033H17.0279L14.3608%2019.1797L17.0502%2023.4561H15.2294L13.3028%2020.2599L11.3818%2023.4561H9.55545L12.217%2019.1797L9.58886%2014.9033H11.4152Z'%20fill='white'/%3e%3cdefs%3e%3clinearGradient%20id='paint0_linear_7669_91114'%20x1='22.8'%20y1='6'%20x2='22.8'%20y2='34'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20stop-color='%2321A366'/%3e%3cstop%20offset='1'%20stop-color='%230C3D26'/%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e", qm = { class: "co-uploader" }, Xm = ["accept"], Km = { class: "co-uploader__title co-label co-label--md text-center co-text-primary-95 mb-0 d-flex align-items-center co-mt-4 co-pt-6" }, Gm = { class: "co-text-brand co-fw-500 co-me-6" }, Qm = {
|
|
1918
1929
|
key: 0,
|
|
1919
1930
|
class: "co-uploader__selected-file w-100"
|
|
1920
1931
|
}, Zm = { class: "d-flex align-items-center justify-content-between" }, Jm = { class: "d-flex align-items-center" }, eh = ["alt"], th = ["alt"], ah = ["alt"], nh = ["alt"], oh = { class: "co-ms-8" }, rh = { class: "co-label co-label--md co-text-secondary mb-0" }, sh = { class: "co-label co-label--md co-uploader__text mb-0" }, ih = {
|
|
@@ -2134,7 +2145,7 @@ const Mm = /* @__PURE__ */ Me($m, [["render", Om], ["__scopeId", "data-v-6ff0f06
|
|
|
2134
2145
|
], 2);
|
|
2135
2146
|
};
|
|
2136
2147
|
}
|
|
2137
|
-
}), hh = /* @__PURE__ */ Me(mh, [["__scopeId", "data-v-
|
|
2148
|
+
}), hh = /* @__PURE__ */ Me(mh, [["__scopeId", "data-v-280c2d03"]]), vh = ["id"], gh = { class: "co-switch__input" }, bh = ["value", "disabled", "checked"], yh = ["for"], _h = {
|
|
2138
2149
|
key: 0,
|
|
2139
2150
|
class: "co-fw-400 co-label co-label--md co-medium pt-2"
|
|
2140
2151
|
}, $P = /* @__PURE__ */ le({
|
|
@@ -2624,7 +2635,7 @@ const Mm = /* @__PURE__ */ Me($m, [["render", Om], ["__scopeId", "data-v-6ff0f06
|
|
|
2624
2635
|
])) : x("", !0)
|
|
2625
2636
|
], 2));
|
|
2626
2637
|
}
|
|
2627
|
-
}), qu = /* @__PURE__ */ Me(cv, [["__scopeId", "data-v-
|
|
2638
|
+
}), qu = /* @__PURE__ */ Me(cv, [["__scopeId", "data-v-d10701fc"]]), dv = { class: "d-flex align-items-center" }, fv = {
|
|
2628
2639
|
key: 0,
|
|
2629
2640
|
class: "co-me-5"
|
|
2630
2641
|
}, pv = {
|
|
@@ -2694,7 +2705,7 @@ const Mm = /* @__PURE__ */ Me($m, [["render", Om], ["__scopeId", "data-v-6ff0f06
|
|
|
2694
2705
|
_: 1
|
|
2695
2706
|
}, 8, ["disabled"]));
|
|
2696
2707
|
}
|
|
2697
|
-
}), Xu = /* @__PURE__ */ Me(vv, [["__scopeId", "data-v-
|
|
2708
|
+
}), Xu = /* @__PURE__ */ Me(vv, [["__scopeId", "data-v-4e2d1980"]]), gv = {
|
|
2698
2709
|
key: 1,
|
|
2699
2710
|
class: "copy-text-box__empty co-label co-label--md mb-0"
|
|
2700
2711
|
}, bv = {
|
|
@@ -3147,7 +3158,7 @@ const Lv = ["id"], Iv = { class: "co-float-modal__header d-flex justify-content-
|
|
|
3147
3158
|
}, null, 2)) : x("", !0)
|
|
3148
3159
|
], 64));
|
|
3149
3160
|
}
|
|
3150
|
-
}), SP = /* @__PURE__ */ Me(Vv, [["__scopeId", "data-v-
|
|
3161
|
+
}), SP = /* @__PURE__ */ Me(Vv, [["__scopeId", "data-v-76bf5f39"]]), Bv = {
|
|
3151
3162
|
key: 1,
|
|
3152
3163
|
class: "mb-0"
|
|
3153
3164
|
}, Fv = {
|
|
@@ -3198,7 +3209,7 @@ const Lv = ["id"], Iv = { class: "co-float-modal__header d-flex justify-content-
|
|
|
3198
3209
|
_: 3
|
|
3199
3210
|
}));
|
|
3200
3211
|
}
|
|
3201
|
-
}), LP = /* @__PURE__ */ Me(Yv, [["__scopeId", "data-v-
|
|
3212
|
+
}), LP = /* @__PURE__ */ Me(Yv, [["__scopeId", "data-v-0cebafee"]]), Hv = { class: "d-flex align-items-center" }, Wv = { class: "co-label ps-2 mb-0" }, IP = /* @__PURE__ */ le({
|
|
3202
3213
|
__name: "CobreFieldLogo",
|
|
3203
3214
|
props: {
|
|
3204
3215
|
label: {},
|
|
@@ -5032,7 +5043,7 @@ const t0 = { class: "co-input-v3" }, a0 = { class: "d-flex align-items-center ju
|
|
|
5032
5043
|
]);
|
|
5033
5044
|
};
|
|
5034
5045
|
}
|
|
5035
|
-
}), or = /* @__PURE__ */ Me(f0, [["__scopeId", "data-v-
|
|
5046
|
+
}), or = /* @__PURE__ */ Me(f0, [["__scopeId", "data-v-26134e15"]]);
|
|
5036
5047
|
/**
|
|
5037
5048
|
* Vue Currency Input 3.2.1
|
|
5038
5049
|
* (c) 2018-2025 Matthias Stiller
|
|
@@ -6307,7 +6318,7 @@ const _0 = { class: "co-input" }, w0 = {
|
|
|
6307
6318
|
_: 3
|
|
6308
6319
|
}));
|
|
6309
6320
|
}
|
|
6310
|
-
}), oc = /* @__PURE__ */ Me(qg, [["__scopeId", "data-v-
|
|
6321
|
+
}), oc = /* @__PURE__ */ Me(qg, [["__scopeId", "data-v-63809398"]]), BP = /* @__PURE__ */ le({
|
|
6311
6322
|
__name: "CobreModalAction",
|
|
6312
6323
|
props: {
|
|
6313
6324
|
title: {},
|
|
@@ -7053,7 +7064,7 @@ const _0 = { class: "co-input" }, w0 = {
|
|
|
7053
7064
|
})) : x("", !0)
|
|
7054
7065
|
]));
|
|
7055
7066
|
}
|
|
7056
|
-
}), WP = /* @__PURE__ */ Me(Ib, [["__scopeId", "data-v-
|
|
7067
|
+
}), WP = /* @__PURE__ */ Me(Ib, [["__scopeId", "data-v-e705b09a"]]), Nb = ["title"], UP = /* @__PURE__ */ le({
|
|
7057
7068
|
__name: "CobreTableCellCopy",
|
|
7058
7069
|
props: {
|
|
7059
7070
|
text: { default: "" },
|
|
@@ -7224,7 +7235,7 @@ const _0 = { class: "co-input" }, w0 = {
|
|
|
7224
7235
|
]);
|
|
7225
7236
|
};
|
|
7226
7237
|
}
|
|
7227
|
-
}), jP = /* @__PURE__ */ Me(qb, [["__scopeId", "data-v-
|
|
7238
|
+
}), jP = /* @__PURE__ */ Me(qb, [["__scopeId", "data-v-d4f6fd99"]]), Xb = { class: "co-avatar-group" }, Kb = {
|
|
7228
7239
|
key: 1,
|
|
7229
7240
|
class: "d-flex align-items-center"
|
|
7230
7241
|
}, Gb = /* @__PURE__ */ le({
|
|
@@ -22041,7 +22052,7 @@ const aE = { class: "co-filter dropdown cobre-dropdown" }, nE = {
|
|
|
22041
22052
|
}, 512);
|
|
22042
22053
|
};
|
|
22043
22054
|
}
|
|
22044
|
-
}), BA = /* @__PURE__ */ Me(pD, [["__scopeId", "data-v-
|
|
22055
|
+
}), BA = /* @__PURE__ */ Me(pD, [["__scopeId", "data-v-7ecb186e"]]);
|
|
22045
22056
|
var At = "top", Yt = "bottom", Ht = "right", St = "left", dr = "auto", Gn = [At, Yt, Ht, St], pn = "start", Hn = "end", hd = "clippingParents", Bi = "viewport", xn = "popper", vd = "reference", Qs = /* @__PURE__ */ Gn.reduce(function(a, e) {
|
|
22046
22057
|
return a.concat([e + "-" + pn, e + "-" + Hn]);
|
|
22047
22058
|
}, []), Fi = /* @__PURE__ */ [].concat(Gn, [dr]).reduce(function(a, e) {
|