svelte-ag 1.2.4 → 1.2.5

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 (18) hide show
  1. package/dist/components/search/components/search-pagnation.svelte +1 -1
  2. package/dist/components/search/tests/SearchPassthroughHarness.svelte.d.ts.map +1 -0
  3. package/dist/components/search/tests/searchPassthrough.comp.test.d.ts.map +1 -0
  4. package/dist/components/search/tests/searchPopover.comp.test.d.ts.map +1 -0
  5. package/dist/components/search/{combinations → tests}/searchPopover.comp.test.js +1 -1
  6. package/package.json +1 -1
  7. package/src/lib/components/search/components/search-pagnation.svelte +1 -1
  8. package/src/lib/components/search/{combinations → tests}/searchPopover.comp.test.ts +1 -1
  9. package/dist/components/search/combinations/SearchPassthroughHarness.svelte.d.ts.map +0 -1
  10. package/dist/components/search/combinations/searchPassthrough.comp.test.d.ts.map +0 -1
  11. package/dist/components/search/combinations/searchPopover.comp.test.d.ts.map +0 -1
  12. /package/dist/components/search/{combinations → tests}/SearchPassthroughHarness.svelte +0 -0
  13. /package/dist/components/search/{combinations → tests}/SearchPassthroughHarness.svelte.d.ts +0 -0
  14. /package/dist/components/search/{combinations → tests}/searchPassthrough.comp.test.d.ts +0 -0
  15. /package/dist/components/search/{combinations → tests}/searchPassthrough.comp.test.js +0 -0
  16. /package/dist/components/search/{combinations → tests}/searchPopover.comp.test.d.ts +0 -0
  17. /package/src/lib/components/search/{combinations → tests}/SearchPassthroughHarness.svelte +0 -0
  18. /package/src/lib/components/search/{combinations → tests}/searchPassthrough.comp.test.ts +0 -0
@@ -60,7 +60,7 @@
60
60
  <Pagination.Ellipsis />
61
61
  </Pagination.Item>
62
62
  {:else}
63
- <Pagination.Item hidden={currentPage !== page.value}>
63
+ <Pagination.Item>
64
64
  <Pagination.Link {page} isActive={currentPage === page.value}>
65
65
  {page.value}
66
66
  </Pagination.Link>
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SearchPassthroughHarness.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/search/tests/SearchPassthroughHarness.svelte.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAEpC,KAAK,gBAAgB,GAAI;IACtB,KAAK,EAAE,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;IACjC,KAAK,EAAE,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;IACjC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,SAAS,CAAC,CAAC;CAC5C,CAAC;AAgCJ,QAAA,MAAM,wBAAwB,uEAAwC,CAAC;AACvE,KAAK,wBAAwB,GAAG,UAAU,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC5E,eAAe,wBAAwB,CAAC"}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"searchPassthrough.comp.test.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/search/tests/searchPassthrough.comp.test.ts"],"names":[],"mappings":""}
@@ -0,0 +1 @@
1
+ {"version":3,"file":"searchPopover.comp.test.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/search/tests/searchPopover.comp.test.ts"],"names":[],"mappings":""}
@@ -1,7 +1,7 @@
1
1
  import { render, screen } from '@testing-library/svelte';
2
2
  import { createRawSnippet } from 'svelte';
3
3
  import { describe, expect, it } from 'vitest';
4
- import SearchPopover from './searchPopover.svelte';
4
+ import SearchPopover from '../combinations/searchPopover.svelte';
5
5
  const selectedItem = {
6
6
  label: 'Alpha',
7
7
  value: 'alpha'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-ag",
3
- "version": "1.2.4",
3
+ "version": "1.2.5",
4
4
  "description": "Useful svelte components",
5
5
  "bugs": "https://github.com/ageorgeh/svelte-ag/issues",
6
6
  "author": "Alexander Hornung",
@@ -60,7 +60,7 @@
60
60
  <Pagination.Ellipsis />
61
61
  </Pagination.Item>
62
62
  {:else}
63
- <Pagination.Item hidden={currentPage !== page.value}>
63
+ <Pagination.Item>
64
64
  <Pagination.Link {page} isActive={currentPage === page.value}>
65
65
  {page.value}
66
66
  </Pagination.Link>
@@ -2,7 +2,7 @@ import { render, screen } from '@testing-library/svelte';
2
2
  import { createRawSnippet } from 'svelte';
3
3
  import { describe, expect, it } from 'vitest';
4
4
 
5
- import SearchPopover from './searchPopover.svelte';
5
+ import SearchPopover from '../combinations/searchPopover.svelte';
6
6
 
7
7
  const selectedItem = {
8
8
  label: 'Alpha',
@@ -1 +0,0 @@
1
- {"version":3,"file":"SearchPassthroughHarness.svelte.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/search/combinations/SearchPassthroughHarness.svelte.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,MAAM,EAAE,MAAM,aAAa,CAAC;AAEpC,KAAK,gBAAgB,GAAI;IACtB,KAAK,EAAE,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;IACjC,KAAK,EAAE,MAAM,CAAC,SAAS,CAAC,OAAO,CAAC,CAAC;IACjC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,eAAe,CAAC,EAAE,MAAM,CAAC;IACzB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,OAAO,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,SAAS,CAAC,CAAC;CAC5C,CAAC;AAgCJ,QAAA,MAAM,wBAAwB,uEAAwC,CAAC;AACvE,KAAK,wBAAwB,GAAG,UAAU,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAC5E,eAAe,wBAAwB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"searchPassthrough.comp.test.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/search/combinations/searchPassthrough.comp.test.ts"],"names":[],"mappings":""}
@@ -1 +0,0 @@
1
- {"version":3,"file":"searchPopover.comp.test.d.ts","sourceRoot":"","sources":["../../../../src/lib/components/search/combinations/searchPopover.comp.test.ts"],"names":[],"mappings":""}