@everymatrix/casino-filter-modal 0.0.246 → 0.0.250

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/casino-filter-modal",
3
- "version": "0.0.246",
3
+ "version": "0.0.250",
4
4
  "main": "dist/casino-filter-modal.js",
5
5
  "svelte": "src/index.ts",
6
6
  "scripts": {
@@ -36,5 +36,5 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "a366db972245075088a5539434d1ea34d55c1b91"
39
+ "gitHead": "a6d1510ec4bbfb0c340f1528b6c6636b9552705c"
40
40
  }
@@ -101,7 +101,7 @@
101
101
  $: show && clientstylingurl && setClientStylingURL();
102
102
  </script>
103
103
 
104
- <div bind:this={customStylingContainer}>
104
+ <div bind:this={customStylingContainer} part="CustomStylingContainer">
105
105
  {#if show}
106
106
  <div
107
107
  transition:fade="{{ transitionDuration: duration }}"
@@ -109,10 +109,11 @@
109
109
  bind:clientWidth={width}
110
110
  bind:clientHeight={height}
111
111
  class="FilterModalWindow"
112
- id="FilterModal">
112
+ id="FilterModal"
113
+ part="FilterModalWindow">
113
114
 
114
- <div class="FilterModalContainer {mobileView ? 'FilterModalMobileContainer' : ''}">
115
- <span class="FilterModalCloseBtn" on:click={close} role="button">
115
+ <div class="FilterModalContainer {mobileView ? 'FilterModalMobileContainer' : ''}" part="FilterModalContainer {mobileView ? 'FilterModalMobileContainer' : ''}">
116
+ <span class="FilterModalCloseBtn" part="FilterModalCloseBtn" on:click={close} role="button">
116
117
  <slot name="close">
117
118
  <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12"></path></svg>
118
119
  </slot>