Package detail

@ctx-core/svg-ui-svelte

ctx-core495Apache-2.01.3.256

ctx-core svg

ctx-core, svg

readme

@ctx-core/svg-ui-svelte

Middleware, component, & utility functions for svg.

Install

npm i @ctx-core/svg-ui-svelte

Svelte + Sapper Component

@ctx-core/svg-ui-svelte has svg_preprocess_, which instantiates a rollup preprocess object.

// rollup.config.js
import { proprocess_ } from '@ctx-core/svelte/node/node'
import { svg_preprocess_ } from '@ctx-core/svg-ui-svelte'
const svg_preprocess = svg_preprocess_()
const preprocess = proprocess_([
    svg_preprocess,
    // ...
])
export default {
    client: {
        //...
        plugins: [
            // ...
            svelte({
                // ...
                extensions: ['.svelte', '.html', '.svg'],
                preprocess,
            }),
            // ...
        ],
        // ...
    },
    server: {
        //...
        plugins: [
            // ...
            svelte({
                // ...
                extensions: ['.svelte', '.html', '.svg'],
                preprocess,
            }),
            // ...
        ],
        // ...
    },
    serviceworker: {
        // ...
    },
}

Svg files can then be imported with optional attributes to be added to the <svg> tag. Note that existing svg attributes in the source file will be the default values.

<script>
    import My_Icon from './path/to/my-icon.svg'
</script>
<My_Icon fill="red"></My_Icon>

How does this work?

The @ctx-core/svg-ui-svelte preprocessor runs as a preprocess hook in rollup-plugin-svelte. An imported svg file:

<svg viewBox="0 0 512 512" width="512" height="512">
  <path d="M480 288c0-80.25-49.28-148.92-119.19-177.62L320 192V80a16 16 0 0 0-16-16h-96a16 16 0 0 0-16 16v112l-40.81-81.62C81.28 139.08 32 207.75 32 288v64h448zm16 96H16a16 16 0 0 0-16 16v32a16 16 0 0 0 16 16h480a16 16 0 0 0 16-16v-32a16 16 0 0 0-16-16z"/>
</svg>

Is preprocessed to a svelte component:

<script context="module">
    export async function preload({ params, query }) {
      return Object.assign({}, query, params)
    }
</script>
<script>
    let svg_node
    $: {
        Object.keys($$props).forEach(
            prop => svg_node?.setAttribute(prop, $$props[prop]))
    }
</script>
<svelte:options namespace="svg"></svelte:options>
<svg bind:this={svg_node} ${attribs_txt}><!--...--></svg>

Middleware

@ctx-core/svg-ui-svelte middleware is an express middleware that responds with the svg file, applying optional url query attributes to the <svg> tag.

Sapper route

The following route, GET /icons/[name].svg, will respond with a svg file in the src/routes/icons directory. GET /icons/[name].svg?fill=blue will set the fill=blue attributes on the <svg> tag.

// src/routes/icons/[name].svg.js
import { svg_get_ } from '@ctx-core/svg'
export const get = svg_get_({ dir: 'src/routes/icons' })

changelog

@ctx-core/svg-ui-svelte

1.3.256

Patch Changes

  • ctx-core: ^7.2.31 -> ^7.2.32

1.3.255

Patch Changes

  • @ctx-core/svg: ^19.0.139 -> ^19.0.140

1.3.254

Patch Changes

  • svelte: ^4.2.18 -> ^4.2.19
  • @sveltejs/kit: ^2.5.21 -> ^2.5.25
  • @sveltejs/adapter-auto: ^3.2.3 -> ^3.2.4
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • ctx-core@7.2.31

1.3.253

Patch Changes

  • @ctx-core/svg: ^19.0.138 -> ^19.0.139

1.3.252

Patch Changes

  • @sveltejs/kit: ^2.5.18 -> ^2.5.21
  • @sveltejs/adapter-auto: ^3.2.2 -> ^3.2.3
  • Updated dependencies
    • ctx-core@7.2.30

1.3.251

Patch Changes

  • ctx-core: ^7.2.28 -> ^7.2.29

1.3.250

Patch Changes

  • ctx-core: ^7.2.27 -> ^7.2.28

1.3.249

Patch Changes

  • svelte-preprocess: ^6.0.1 -> ^6.0.2

1.3.248

Patch Changes

  • ctx-core: ^7.2.26 -> ^7.2.27

1.3.247

Patch Changes

  • ctx-core: ^7.2.25 -> ^7.2.26

1.3.246

Patch Changes

  • @sveltejs/kit: ^2.5.17 -> ^2.5.18

1.3.245

Patch Changes

  • ctx-core: ^7.2.24 -> ^7.2.25

1.3.244

Patch Changes

  • ctx-core: ^7.2.23 -> ^7.2.24

1.3.243

Patch Changes

  • ctx-core: ^7.2.22 -> ^7.2.23

1.3.242

Patch Changes

  • ctx-core: ^7.2.21 -> ^7.2.22

1.3.241

Patch Changes

  • @sveltejs/kit: ^2.5.16 -> ^2.5.17

1.3.240

Patch Changes

  • ctx-core: ^7.2.20 -> ^7.2.21

1.3.239

Patch Changes

  • ctx-core: ^7.2.19 -> ^7.2.20

1.3.238

Patch Changes

  • ctx-core: ^7.2.18 -> ^7.2.19

1.3.237

Patch Changes

  • @sveltejs/kit: ^2.5.15 -> ^2.5.16

1.3.236

Patch Changes

  • @sveltejs/kit: ^2.5.14 -> ^2.5.15

1.3.235

Patch Changes

  • @sveltejs/kit: ^2.5.11 -> ^2.5.14

1.3.234

Patch Changes

  • svelte-preprocess: ^6.0.0 -> ^6.0.1

1.3.233

Patch Changes

  • @sveltejs/kit: ^2.5.10 -> ^2.5.11
  • @sveltejs/adapter-auto: ^3.2.1 -> ^3.2.2

1.3.232

Patch Changes

  • svelte-preprocess: ^5.1.4 -> ^6.0.0

1.3.231

Patch Changes

  • ctx-core: ^7.2.17 -> ^7.2.18

1.3.230

Patch Changes

  • svelte: ^4.2.17 -> ^4.2.18

1.3.229

Patch Changes

  • ctx-core: ^7.2.16 -> ^7.2.17

1.3.228

Patch Changes

  • ctx-core: ^7.2.14 -> ^7.2.15
  • Updated dependencies
    • ctx-core@7.2.16

1.3.227

Patch Changes

  • ctx-core: ^7.2.13 -> ^7.2.14

1.3.226

Patch Changes

  • ctx-core: ^7.2.12 -> ^7.2.13

1.3.225

Patch Changes

  • ctx-core: ^7.2.11 -> ^7.2.12

1.3.224

Patch Changes

  • ctx-core: ^7.2.10 -> ^7.2.11

1.3.223

Patch Changes

  • @sveltejs/kit: ^2.5.9 -> ^2.5.10
  • @sveltejs/adapter-auto: ^3.2.0 -> ^3.2.1

1.3.222

Patch Changes

  • @ctx-core/svg: ^19.0.119 -> ^19.0.120

1.3.221

Patch Changes

  • @sveltejs/kit: ^2.5.8 -> ^2.5.9
  • Updated dependencies
  • Updated dependencies
    • ctx-core@7.2.10

1.3.220

Patch Changes

  • ctx-core: ^7.2.8 -> ^7.2.9

1.3.219

Patch Changes

  • @ctx-core/svg: ^19.0.117 -> ^19.0.118

1.3.218

Patch Changes

  • svelte: ^4.2.16 -> ^4.2.17
  • @sveltejs/kit: ^2.5.7 -> ^2.5.8
  • Updated dependencies
    • ctx-core@7.2.8

1.3.217

Patch Changes

  • ctx-core: ^7.2.6 -> ^7.2.7

1.3.216

Patch Changes

  • ctx-core: ^7.2.5 -> ^7.2.6

1.3.215

Patch Changes

  • @ctx-core/svg: ^19.0.114 -> ^19.0.115

1.3.214

Patch Changes

  • svelte: ^4.2.15 -> ^4.2.16
  • Updated dependencies
    • ctx-core@7.2.5

1.3.213

Patch Changes

  • ctx-core: ^7.2.3 -> ^7.2.4

1.3.212

Patch Changes

  • ctx-core: ^7.2.2 -> ^7.2.3

1.3.211

Patch Changes

  • ctx-core: ^7.2.1 -> ^7.2.2

1.3.210

Patch Changes

  • ctx-core: ^7.2.0 -> ^7.2.1

1.3.209

Patch Changes

  • @sveltejs/kit: ^2.5.6 -> ^2.5.7

1.3.208

Patch Changes

  • ctx-core: ^7.1.5 -> ^7.2.0

1.3.207

Patch Changes

  • svelte-preprocess: ^5.1.3 -> ^5.1.4
  • svelte: ^4.2.14 -> ^4.2.15

1.3.206

Patch Changes

  • @sveltejs/kit: ^2.5.5 -> ^2.5.6

1.3.205

Patch Changes

  • svelte: ^4.2.13 -> ^4.2.14

1.3.204

Patch Changes

  • svelte: ^4.2.12 -> ^4.2.13

1.3.203

Patch Changes

  • ctx-core: ^7.1.4 -> ^7.1.5

1.3.202

Patch Changes

  • ctx-core: ^7.1.3 -> ^7.1.4

1.3.201

Patch Changes

  • ctx-core: ^7.1.2 -> ^7.1.3

1.3.200

Patch Changes

  • ctx-core: ^7.1.1 -> ^7.1.2

1.3.199

Patch Changes

  • ctx-core: ^7.1.0 -> ^7.1.1

1.3.198

Patch Changes

  • ctx-core: ^7.0.2 -> ^7.1.0

1.3.197

Patch Changes

  • ctx-core: ^7.0.1 -> ^7.0.2

1.3.196

Patch Changes

  • ctx-core: ^7.0.0 -> ^7.0.1

1.3.195

Patch Changes

  • Updated dependencies
    • ctx-core@7.0.0

1.3.194

Patch Changes

  • ctx-core: ^6.8.3 -> ^6.9.0

1.3.193

Patch Changes

  • ctx-core: ^6.8.2 -> ^6.8.3

1.3.192

Patch Changes

  • ctx-core: ^6.8.1 -> ^6.8.2

1.3.191

Patch Changes

  • ctx-core: ^6.8.0 -> ^6.8.1

1.3.190

Patch Changes

  • ctx-core: ^6.7.1 -> ^6.8.0

1.3.189

Patch Changes

  • ctx-core: ^6.7.0 -> ^6.7.1

1.3.188

Patch Changes

  • @sveltejs/kit: ^2.5.4 -> ^2.5.5

1.3.187

Patch Changes

  • @sveltejs/adapter-auto: ^3.1.1 -> ^3.2.0

1.3.186

Patch Changes

  • ctx-core: ^6.6.2 -> ^6.7.0

1.3.185

Patch Changes

  • ctx-core: ^6.6.1 -> ^6.6.2

1.3.184

Patch Changes

  • package.json: author: url,email
  • Updated dependencies
    • ctx-core@6.6.1

1.3.183

Patch Changes

  • ctx-core: ^6.5.10 -> ^6.6.0

1.3.182

Patch Changes

  • ctx-core: ^6.5.9 -> ^6.5.10

1.3.181

Patch Changes

  • ctx-core: ^6.5.8 -> ^6.5.9

1.3.180

Patch Changes

  • ctx-core: ^6.5.7 -> ^6.5.8

1.3.179

Patch Changes

  • ctx-core: ^6.5.6 -> ^6.5.7

1.3.178

Patch Changes

  • @ctx-core/svg: ^19.0.85 -> ^19.0.86

1.3.177

Patch Changes

  • @sveltejs/kit: ^2.5.3 -> ^2.5.4
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • ctx-core@6.5.6

1.3.176

Patch Changes

  • ctx-core: ^6.5.4 -> ^6.5.5

1.3.175

Patch Changes

  • @sveltejs/kit: ^2.5.2 -> ^2.5.3

1.3.174

Patch Changes

  • ctx-core: ^6.5.3 -> ^6.5.4

1.3.173

Patch Changes

  • ctx-core: ^6.5.2 -> ^6.5.3

1.3.172

Patch Changes

  • ctx-core: ^6.5.1 -> ^6.5.2

1.3.171

Patch Changes

  • ctx-core: ^6.5.0 -> ^6.5.1

1.3.170

Patch Changes

  • @sveltejs/kit: ^2.5.1 -> ^2.5.2

1.3.169

Patch Changes

  • ctx-core: ^6.4.6 -> ^6.5.0

1.3.168

Patch Changes

  • ctx-core: ^6.4.5 -> ^6.4.6

1.3.167

Patch Changes

  • @ctx-core/svg: ^19.0.77 -> ^19.0.78

1.3.166

Patch Changes

  • svelte: ^4.2.11 -> ^4.2.12
  • Updated dependencies
    • ctx-core@6.4.5

1.3.165

Patch Changes

  • @sveltejs/kit: ^2.5.0 -> ^2.5.1

1.3.164

Patch Changes

  • ctx-core: ^6.4.3 -> ^6.4.4

1.3.163

Patch Changes

  • ctx-core: ^6.4.2 -> ^6.4.3

1.3.162

Patch Changes

  • @ctx-core/svg: ^19.0.74 -> ^19.0.75

1.3.161

Patch Changes

  • svelte: ^4.2.10 -> ^4.2.11
  • Updated dependencies
    • ctx-core@6.4.2

1.3.160

Patch Changes

  • ctx-core: ^6.3.0 -> ^6.4.0
  • Updated dependencies
    • ctx-core@6.4.1

1.3.159

Patch Changes

  • ctx-core: ^6.2.3 -> ^6.3.0

1.3.158

Patch Changes

  • ctx-core: ^6.2.1 -> ^6.2.2
  • Updated dependencies
    • ctx-core@6.2.3

1.3.157

Patch Changes

  • ctx-core: ^6.1.3 -> ^6.2.0
  • Updated dependencies
    • ctx-core@6.2.1

1.3.156

Patch Changes

  • ctx-core: ^6.1.2 -> ^6.1.3

1.3.155

Patch Changes

  • tsx: ^4.7.0 -> ^4.7.1
  • Updated dependencies
    • ctx-core@6.1.2

1.3.154

Patch Changes

  • ctx-core: ^6.1.0 -> ^6.1.1

1.3.153

Patch Changes

  • ctx-core: ^6.0.0 -> ^6.1.0

1.3.152

Patch Changes

  • Updated dependencies
    • ctx-core@6.0.0

1.3.151

Patch Changes

  • ctx-core: ^5.38.1 -> ^5.38.2

1.3.150

Patch Changes

  • svelte: ^4.2.9 -> ^4.2.10
  • ctx-core: ^5.38.0 -> ^5.38.1

1.3.149

Patch Changes

  • ctx-core: ^5.37.0 -> ^5.38.0

1.3.148

Patch Changes

  • ctx-core: ^5.36.4 -> ^5.37.0

1.3.147

Patch Changes

  • ctx-core: ^5.36.3 -> ^5.36.4

1.3.146

Patch Changes

  • ctx-core: ^5.36.2 -> ^5.36.3

1.3.145

Patch Changes

  • ctx-core: ^5.36.1 -> ^5.36.2

1.3.144

Patch Changes

  • ctx-core: ^5.36.0 -> ^5.36.1

1.3.143

Patch Changes

  • ctx-core: ^5.35.2 -> ^5.36.0

1.3.142

Patch Changes

  • ctx-core: ^5.35.1 -> ^5.35.2

1.3.141

Patch Changes

  • ctx-core: ^5.35.0 -> ^5.35.1

1.3.140

Patch Changes

  • ctx-core: ^5.34.0 -> ^5.35.0

1.3.139

Patch Changes

  • ctx-core: ^5.33.0 -> ^5.34.0

1.3.138

Patch Changes

  • ctx-core: ^5.32.1 -> ^5.33.0

1.3.137

Patch Changes

  • ctx-core: ^5.32.0 -> ^5.32.1

1.3.136

Patch Changes

  • ctx-core: ^5.31.2 -> ^5.32.0

1.3.135

Patch Changes

  • ctx-core: ^5.31.1 -> ^5.31.2

1.3.134

Patch Changes

  • ctx-core: ^5.31.0 -> ^5.31.1

1.3.133

Patch Changes

  • ctx-core: ^5.30.0 -> ^5.31.0

1.3.132

Patch Changes

  • ctx-core: ^5.29.0 -> ^5.30.0

1.3.131

Patch Changes

  • markup: fix: error

1.3.130

Patch Changes

  • fix: import

1.3.129

Patch Changes

  • package.json: fix: include all directories

1.3.128

Patch Changes

  • ctx-core: ^5.28.1 -> ^5.29.0

1.3.127

Patch Changes

  • ctx-core: ^5.27.2 -> ^5.28.0
  • Updated dependencies
    • ctx-core@5.28.1

1.3.126

Patch Changes

  • ctx-core: ^5.27.1 -> ^5.27.2

1.3.125

Patch Changes

  • ctx-core: ^5.26.0 -> ^5.27.0

1.3.124

Patch Changes

  • ctx-core: ^5.25.5 -> ^5.26.0

1.3.123

Patch Changes

  • ctx-core: ^5.25.4 -> ^5.25.5

1.3.122

Patch Changes

  • ctx-core: ^5.25.3 -> ^5.25.4

1.3.121

Patch Changes

  • ctx-core: ^5.25.2 -> ^5.25.3

1.3.120

Patch Changes

  • ctx-core: ^5.25.1 -> ^5.25.2

1.3.119

Patch Changes

  • ctx-core: ^5.25.0 -> ^5.25.1

1.3.118

Patch Changes

  • ctx-core: ^5.24.0 -> ^5.25.0

1.3.117

Patch Changes

  • ctx-core: ^5.23.0 -> ^5.24.0

1.3.116

Patch Changes

  • ctx-core: ^5.22.1 -> ^5.23.0

1.3.115

Patch Changes

  • ctx-core: ^5.22.0 -> ^5.22.1

1.3.114

Patch Changes

  • svelte: ^4.2.8 -> ^4.2.9

1.3.113

Patch Changes

  • ctx-core: ^5.21.0 -> ^5.22.0

1.3.112

Patch Changes

  • ctx-core: ^5.20.0 -> ^5.21.0

1.3.111

Patch Changes

  • ctx-core: ^5.19.2 -> ^5.20.0

1.3.110

Patch Changes

  • ctx-core: ^5.19.1 -> ^5.19.2

1.3.109

Patch Changes

  • ctx-core: ^5.19.0 -> ^5.19.1

1.3.108

Patch Changes

  • ctx-core: ^5.18.9 -> ^5.19.0

1.3.107

Patch Changes

  • ctx-core: ^5.18.8 -> ^5.18.9

1.3.106

Patch Changes

  • import nodejs core modules using node: prefix
  • Updated dependencies
    • ctx-core@5.18.8

1.3.105

Patch Changes

  • ctx-core: ^5.18.6 -> ^5.18.7

1.3.104

Patch Changes

  • ctx-core: ^5.18.5 -> ^5.18.6

1.3.103

Patch Changes

  • ctx-core: ^5.18.4 -> ^5.18.5

1.3.102

Patch Changes

  • ctx-core: ^5.18.3 -> ^5.18.4

1.3.101

Patch Changes

  • ctx-core: ^5.18.1 -> ^5.18.2
  • Updated dependencies
    • ctx-core@5.18.3

1.3.100

Patch Changes

  • ctx-core: ^5.18.0 -> ^5.18.1

1.3.99

Patch Changes

  • ctx-core: ^5.17.1 -> ^5.18.0

1.3.98

Patch Changes

  • ctx-core: ^5.17.0 -> ^5.17.1

1.3.97

Patch Changes

  • ctx-core: ^5.16.2 -> ^5.17.0

1.3.96

Patch Changes

  • ctx-core: ^5.16.1 -> ^5.16.2

1.3.95

Patch Changes

  • ctx-core: ^5.16.0 -> ^5.16.1

1.3.94

Patch Changes

  • ctx-core: ^5.15.0 -> ^5.16.0

1.3.93

Patch Changes

  • ctx-core: ^5.14.0 -> ^5.15.0

1.3.92

Patch Changes

  • ctx-core: ^5.13.0 -> ^5.14.0

1.3.91

Patch Changes

  • htmlparser2: ^9.0.0 -> ^9.1.0

1.3.90

Patch Changes

  • ctx-core: ^5.12.0 -> ^5.13.0

1.3.89

Patch Changes

  • ctx-core: ^5.11.0 -> ^5.12.0

1.3.88

Patch Changes

  • ctx-core: ^5.10.0 -> ^5.11.0

1.3.87

Patch Changes

  • ctx-core: ^5.9.0 -> ^5.10.0

1.3.86

Patch Changes

  • ctx-core: ^5.8.0 -> ^5.9.0

1.3.85

Patch Changes

  • ctx-core: ^5.7.0 -> ^5.8.0

1.3.84

Patch Changes

  • ctx-core: ^5.6.1 -> ^5.7.0

1.3.83

Patch Changes

  • ctx-core: ^5.5.0 -> ^5.6.0
  • Updated dependencies
    • ctx-core@5.6.1

1.3.82

Patch Changes

  • @ctx-core/svg: ^18.4.72 -> ^18.4.73

1.3.81

Patch Changes

  • @ctx-core/svg: ^18.4.71 -> ^18.4.72
  • ctx-core: ^5.4.1 -> ^5.5.0

1.3.80

Patch Changes

  • @ctx-core/svg: ^18.4.70 -> ^18.4.71

1.3.79

Patch Changes

  • ctx-core: ^5.4.0 -> ^5.4.1

1.3.78

Patch Changes

  • @ctx-core/svg: ^18.4.69 -> ^18.4.70

1.3.77

Patch Changes

  • ctx-core: ^5.3.1 -> ^5.4.0

1.3.76

Patch Changes

  • @ctx-core/svg: ^18.4.68 -> ^18.4.69

1.3.75

Patch Changes

  • ctx-core: ^5.3.0 -> ^5.3.1

1.3.74

Patch Changes

  • @ctx-core/svg: ^18.4.67 -> ^18.4.68

1.3.73

Patch Changes

  • ctx-core: ^5.2.3 -> ^5.3.0

1.3.72

Patch Changes

  • @ctx-core/svg: ^18.4.66 -> ^18.4.67

1.3.71

Patch Changes

  • ctx-core: ^5.2.2 -> ^5.2.3

1.3.70

Patch Changes

  • @ctx-core/svg: ^18.4.65 -> ^18.4.66

1.3.69

Patch Changes

  • ctx-core: ^5.2.1 -> ^5.2.2

1.3.68

Patch Changes

  • @ctx-core/svg: ^18.4.64 -> ^18.4.65

1.3.67

Patch Changes

  • ctx-core: ^5.2.0 -> ^5.2.1

1.3.66

Patch Changes

  • @ctx-core/svg: ^18.4.63 -> ^18.4.64

1.3.65

Patch Changes

  • ctx-core: ^5.1.0 -> ^5.2.0

1.3.64

Patch Changes

  • tsx: ^4.6.2 -> ^4.7.0

1.3.63

Patch Changes

  • consolidate dependencies
  • Updated dependencies
    • ctx-core@5.1.0

1.3.62

Patch Changes

  • @ctx-core/error: ^12.4.53 -> ^12.4.54
  • @ctx-core/array: ^27.1.15 -> ^27.1.16
  • @ctx-core/object: ^31.1.35 -> ^31.1.36

1.3.61

Patch Changes

  • @ctx-core/error: ^12.4.52 -> ^12.4.53
  • @ctx-core/array: ^27.1.14 -> ^27.1.15
  • @ctx-core/object: ^31.1.34 -> ^31.1.35

1.3.60

Patch Changes

  • @ctx-core/svg: ^18.4.58 -> ^18.4.59

1.3.59

Patch Changes

  • svelte-preprocess: ^5.1.2 -> ^5.1.3
  • @ctx-core/svg: ^18.4.57 -> ^18.4.58
  • @ctx-core/error: ^12.4.51 -> ^12.4.52
  • @ctx-core/array: ^27.1.13 -> ^27.1.14
  • @ctx-core/object: ^31.1.33 -> ^31.1.34

1.3.58

Patch Changes

  • @ctx-core/error: ^12.4.50 -> ^12.4.51
  • @ctx-core/array: ^27.1.12 -> ^27.1.13
  • @ctx-core/object: ^31.1.32 -> ^31.1.33

1.3.57

Patch Changes

  • @ctx-core/error: ^12.4.49 -> ^12.4.50
  • @ctx-core/object: ^31.1.31 -> ^31.1.32
  • @ctx-core/array: ^27.1.11 -> ^27.1.12

1.3.56

Patch Changes

  • @ctx-core/object: ^31.1.30 -> ^31.1.31
  • @ctx-core/error: ^12.4.48 -> ^12.4.49
  • @ctx-core/array: ^27.1.10 -> ^27.1.11

1.3.55

Patch Changes

  • @ctx-core/array: ^27.1.9 -> ^27.1.10
  • @ctx-core/object: ^31.1.29 -> ^31.1.30
  • @ctx-core/error: ^12.4.47 -> ^12.4.48

1.3.54

Patch Changes

  • @ctx-core/object: ^31.1.28 -> ^31.1.29
  • @ctx-core/error: ^12.4.46 -> ^12.4.47
  • @ctx-core/array: ^27.1.8 -> ^27.1.9

1.3.53

Patch Changes

  • svelte-preprocess: ^5.1.1 -> ^5.1.2

1.3.52

Patch Changes

  • @ctx-core/error: ^12.4.45 -> ^12.4.46
  • @ctx-core/array: ^27.1.7 -> ^27.1.8
  • @ctx-core/object: ^31.1.27 -> ^31.1.28

1.3.51

Patch Changes

  • @ctx-core/object: ^31.1.26 -> ^31.1.27
  • @ctx-core/array: ^27.1.6 -> ^27.1.7
  • @ctx-core/error: ^12.4.44 -> ^12.4.45

1.3.50

Patch Changes

  • @ctx-core/array: ^27.1.5 -> ^27.1.6
  • @ctx-core/error: ^12.4.43 -> ^12.4.44
  • @ctx-core/object: ^31.1.25 -> ^31.1.26

1.3.49

Patch Changes

  • @ctx-core/array: ^27.1.4 -> ^27.1.5
  • @ctx-core/object: ^31.1.24 -> ^31.1.25
  • @ctx-core/error: ^12.4.42 -> ^12.4.43

1.3.48

Patch Changes

  • @ctx-core/error: ^12.4.41 -> ^12.4.42
  • @ctx-core/array: ^27.1.3 -> ^27.1.4
  • @ctx-core/object: ^31.1.23 -> ^31.1.24

1.3.47

Patch Changes

  • @ctx-core/object: ^31.1.22 -> ^31.1.23
  • @ctx-core/error: ^12.4.40 -> ^12.4.41
  • @ctx-core/array: ^27.1.2 -> ^27.1.3

1.3.46

Patch Changes

  • @ctx-core/array: ^27.1.1 -> ^27.1.2
  • Updated dependencies
    • @ctx-core/error@12.4.40
    • @ctx-core/object@31.1.22

1.3.45

Patch Changes

  • @ctx-core/array: ^27.1.0 -> ^27.1.1
  • Updated dependencies
    • @ctx-core/error@12.4.39
    • @ctx-core/object@31.1.21

1.3.44

Patch Changes

  • @ctx-core/array: ^27.0.38 -> ^27.1.0
  • Updated dependencies
    • @ctx-core/error@12.4.38
    • @ctx-core/object@31.1.20

1.3.43

Patch Changes

  • @ctx-core/object: ^31.1.18 -> ^31.1.19
  • @ctx-core/error: ^12.4.36 -> ^12.4.37
  • @ctx-core/array: ^27.0.37 -> ^27.0.38

1.3.42

Patch Changes

  • @ctx-core/object: ^31.1.17 -> ^31.1.18
  • @ctx-core/array: ^27.0.36 -> ^27.0.37
  • @ctx-core/error: ^12.4.35 -> ^12.4.36

1.3.41

Patch Changes

  • @ctx-core/object: ^31.1.16 -> ^31.1.17
  • @ctx-core/array: ^27.0.35 -> ^27.0.36
  • @ctx-core/error: ^12.4.34 -> ^12.4.35

1.3.40

Patch Changes

  • @ctx-core/array: ^27.0.34 -> ^27.0.35
  • @ctx-core/object: ^31.1.15 -> ^31.1.16
  • @ctx-core/error: ^12.4.33 -> ^12.4.34

1.3.39

Patch Changes

  • @ctx-core/array: ^27.0.33 -> ^27.0.34
  • @ctx-core/object: ^31.1.14 -> ^31.1.15
  • @ctx-core/error: ^12.4.32 -> ^12.4.33

1.3.38

Patch Changes

  • @ctx-core/svg: ^18.4.37 -> ^18.4.38

1.3.37

Patch Changes

  • svelte: ^4.2.7 -> ^4.2.8

1.3.36

Patch Changes

  • @ctx-core/error: ^12.4.31 -> ^12.4.32
  • @ctx-core/array: ^27.0.32 -> ^27.0.33
  • @ctx-core/object: ^31.1.13 -> ^31.1.14

1.3.35

Patch Changes

  • @ctx-core/error: ^12.4.30 -> ^12.4.31
  • @ctx-core/object: ^31.1.12 -> ^31.1.13
  • @ctx-core/array: ^27.0.31 -> ^27.0.32

1.3.34

Patch Changes

  • @ctx-core/error: ^12.4.29 -> ^12.4.30
  • @ctx-core/object: ^31.1.11 -> ^31.1.12
  • @ctx-core/array: ^27.0.30 -> ^27.0.31

1.3.33

Patch Changes

  • @ctx-core/error: ^12.4.28 -> ^12.4.29
  • @ctx-core/object: ^31.1.10 -> ^31.1.11
  • @ctx-core/array: ^27.0.29 -> ^27.0.30

1.3.32

Patch Changes

  • @ctx-core/array: ^27.0.28 -> ^27.0.29
  • @ctx-core/error: ^12.4.27 -> ^12.4.28
  • @ctx-core/object: ^31.1.9 -> ^31.1.10

1.3.31

Patch Changes

  • @ctx-core/error: ^12.4.26 -> ^12.4.27
  • @ctx-core/object: ^31.1.8 -> ^31.1.9
  • @ctx-core/array: ^27.0.27 -> ^27.0.28

1.3.30

Patch Changes

  • @ctx-core/error: ^12.4.25 -> ^12.4.26
  • @ctx-core/object: ^31.1.7 -> ^31.1.8
  • @ctx-core/array: ^27.0.26 -> ^27.0.27

1.3.29

Patch Changes

  • tsx: ^4.4.0 -> ^4.5.0
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/array@27.0.26
    • @ctx-core/error@12.4.25
    • @ctx-core/object@31.1.7

1.3.28

Patch Changes

  • tsx: ^4.3.0 -> ^4.4.0
  • Updated dependencies
    • @ctx-core/array@27.0.25
    • @ctx-core/error@12.4.24
    • @ctx-core/object@31.1.6

1.3.27

Patch Changes

  • @ctx-core/error: ^12.4.22 -> ^12.4.23
  • @ctx-core/array: ^27.0.23 -> ^27.0.24
  • @ctx-core/object: ^31.1.4 -> ^31.1.5

1.3.26

Patch Changes

  • @ctx-core/array: ^27.0.22 -> ^27.0.23
  • @ctx-core/error: ^12.4.21 -> ^12.4.22
  • @ctx-core/object: ^31.1.3 -> ^31.1.4

1.3.25

Patch Changes

  • tsx: ^4.1.4 -> ^4.2.0
  • svelte-preprocess: ^5.1.0 -> ^5.1.1
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/array@27.0.22
    • @ctx-core/error@12.4.21
    • @ctx-core/object@31.1.3

1.3.24

Patch Changes

  • @ctx-core/object: ^31.1.1 -> ^31.1.2
  • @ctx-core/error: ^12.4.19 -> ^12.4.20
  • @ctx-core/array: ^27.0.20 -> ^27.0.21

1.3.23

Patch Changes

  • @ctx-core/svg: ^18.4.23 -> ^18.4.24

1.3.22

Patch Changes

  • svelte: ^4.2.6 -> ^4.2.7

1.3.21

Patch Changes

  • @ctx-core/error: ^12.4.18 -> ^12.4.19
  • @ctx-core/array: ^27.0.19 -> ^27.0.20
  • @ctx-core/object: ^31.1.0 -> ^31.1.1

1.3.20

Patch Changes

  • svelte: ^4.2.5 -> ^4.2.6
  • @ctx-core/object: ^31.0.1 -> ^31.1.0
  • Updated dependencies
    • @ctx-core/array@27.0.19
    • @ctx-core/error@12.4.18

1.3.19

Patch Changes

  • tsx: ^4.1.3 -> ^4.1.4
  • @ctx-core/svg: ^18.4.18 -> ^18.4.20
  • Updated dependencies
    • @ctx-core/array@27.0.18
    • @ctx-core/error@12.4.17
    • @ctx-core/object@31.0.1

1.3.18

Patch Changes

  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/object@31.0.0
    • @ctx-core/array@27.0.17
    • @ctx-core/error@12.4.16

1.3.17

Patch Changes

  • @ctx-core/svg: ^18.4.16 -> ^18.4.17

1.3.16

Patch Changes

  • @ctx-core/svg: ^18.4.15 -> ^18.4.16
  • Updated dependencies
    • @ctx-core/array@27.0.16
    • @ctx-core/error@12.4.15
    • @ctx-core/object@30.4.8

1.3.15

Patch Changes

  • @ctx-core/object: ^30.4.6 -> ^30.4.7
  • @ctx-core/array: ^27.0.14 -> ^27.0.15
  • @ctx-core/error: ^12.4.13 -> ^12.4.14

1.3.14

Patch Changes

  • @ctx-core/array: ^27.0.13 -> ^27.0.14
  • @ctx-core/object: ^30.4.5 -> ^30.4.6
  • @ctx-core/error: ^12.4.12 -> ^12.4.13

1.3.13

Patch Changes

  • @ctx-core/array: ^27.0.12 -> ^27.0.13
  • @ctx-core/error: ^12.4.11 -> ^12.4.12
  • @ctx-core/object: ^30.4.4 -> ^30.4.5

1.3.12

Patch Changes

  • @ctx-core/object: ^30.4.3 -> ^30.4.4
  • @ctx-core/error: ^12.4.10 -> ^12.4.11
  • @ctx-core/array: ^27.0.11 -> ^27.0.12

1.3.11

Patch Changes

  • @ctx-core/object: ^30.4.2 -> ^30.4.3
  • Updated dependencies
    • @ctx-core/array@27.0.11
    • @ctx-core/error@12.4.10

1.3.10

Patch Changes

  • @ctx-core/array: ^27.0.9 -> ^27.0.10
  • @ctx-core/object: ^30.4.1 -> ^30.4.2
  • @ctx-core/error: ^12.4.8 -> ^12.4.9

1.3.9

Patch Changes

  • svelte: ^4.2.4 -> ^4.2.5
  • tsx: ^4.1.2 -> ^4.1.3
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/array@27.0.9
    • @ctx-core/error@12.4.8
    • @ctx-core/object@30.4.1

1.3.8

Patch Changes

  • @ctx-core/object: ^30.3.1 -> ^30.4.0
  • Updated dependencies
    • @ctx-core/array@27.0.8
    • @ctx-core/error@12.4.7

1.3.7

Patch Changes

  • @ctx-core/array: ^27.0.6 -> ^27.0.7
  • @ctx-core/error: ^12.4.5 -> ^12.4.6
  • @ctx-core/object: ^30.3.0 -> ^30.3.1

1.3.6

Patch Changes

  • @ctx-core/object: ^30.2.0 -> ^30.3.0
  • svelte: ^4.2.3 -> ^4.2.4
  • Updated dependencies
    • @ctx-core/array@27.0.6
    • @ctx-core/error@12.4.5

1.3.5

Patch Changes

  • @ctx-core/object: ^30.1.3 -> ^30.2.0
  • Updated dependencies
    • @ctx-core/array@27.0.5
    • @ctx-core/error@12.4.4

1.3.4

Patch Changes

  • @ctx-core/array: ^27.0.3 -> ^27.0.4

1.3.3

Patch Changes

  • package.json: files: + *.js
  • Updated dependencies
    • @ctx-core/array@27.0.3
    • @ctx-core/error@12.4.3
    • @ctx-core/object@30.1.3

1.3.2

Patch Changes

  • fix: missing tsconfig.json
  • Updated dependencies
    • @ctx-core/array@27.0.2
    • @ctx-core/error@12.4.2
    • @ctx-core/object@30.1.2

1.3.1

Patch Changes

  • svelte: ^4.2.2 -> ^4.2.3
  • tsx: ^4.0.0 -> ^4.1.2
  • svelte-preprocess: ^5.0.4 -> ^5.1.0
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/array@27.0.1
    • @ctx-core/error@12.4.1
    • @ctx-core/object@30.1.1

1.3.0

Minor Changes

  • fix:types package.json exports
  • tsconfig:

    "module": "ESNext"
    "moduleResolution": "nodenext"
    "target": "ESNext"

Patch Changes

  • package.json: - "svelte": "./src/index.js"
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/array@27.0.0
    • @ctx-core/error@12.4.0
    • @ctx-core/object@30.1.0

1.2.191

Patch Changes

  • Updated dependencies
    • @ctx-core/object@30.0.0
    • @ctx-core/array@26.15.9
    • @ctx-core/error@12.3.49

1.2.190

Patch Changes

  • @ctx-core/object: ^29.0.0 -> ^29.1.0
  • Updated dependencies
    • @ctx-core/array@26.15.8
    • @ctx-core/error@12.3.48

1.2.189

Patch Changes

  • @ctx-core/svg: ^18.3.15 -> ^18.3.16

1.2.188

Patch Changes

  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/object@29.0.0
    • @ctx-core/array@26.15.7
    • @ctx-core/error@12.3.47

1.2.187

Patch Changes

  • @ctx-core/object: ^28.2.1 -> ^28.2.2
  • Updated dependencies
    • @ctx-core/array@26.15.6
    • @ctx-core/error@12.3.46

1.2.186

Patch Changes

  • @ctx-core/svg: ^18.3.12 -> ^18.3.13

1.2.185

Patch Changes

  • @ctx-core/svg: ^18.3.11 -> ^18.3.12

1.2.184

Patch Changes

  • @ctx-core/svg: ^18.3.10 -> ^18.3.11

1.2.183

Patch Changes

  • @ctx-core/svg: ^18.3.9 -> ^18.3.10

1.2.182

Patch Changes

  • svelte: ^4.2.1 -> ^4.2.2
  • Updated dependencies
    • @ctx-core/array@26.15.5
    • @ctx-core/error@12.3.45
    • @ctx-core/object@28.2.1

1.2.181

Patch Changes

  • @ctx-core/object: ^28.1.0 -> ^28.2.0
  • Updated dependencies
    • @ctx-core/array@26.15.4
    • @ctx-core/error@12.3.44

1.2.180

Patch Changes

  • @ctx-core/object: ^28.0.7 -> ^28.1.0
  • Updated dependencies
    • @ctx-core/array@26.15.3
    • @ctx-core/error@12.3.43

1.2.179

Patch Changes

  • @ctx-core/svg: ^18.3.5 -> ^18.3.6

1.2.178

Patch Changes

  • @ctx-core/svg: ^18.3.4 -> ^18.3.5

1.2.177

Patch Changes

  • svelte: ^4.2.0 -> ^4.2.1

1.2.176

Patch Changes

  • version bump
  • Updated dependencies
    • @ctx-core/array@26.15.2
    • @ctx-core/error@12.3.42
    • @ctx-core/object@28.0.7

1.2.175

Patch Changes

  • @ctx-core/array: ^26.15.0 -> ^26.15.1
  • @ctx-core/object: ^28.0.5 -> ^28.0.6
  • Updated dependencies
    • @ctx-core/error@12.3.41

1.2.174

Patch Changes

  • @ctx-core/array: ^26.14.1 -> ^26.15.0

1.2.173

Patch Changes

  • @ctx-core/object: ^28.0.4 -> ^28.0.5
  • @ctx-core/array: ^26.13.0 -> ^26.14.0
  • @ctx-core/svg: ^18.2.108 -> ^18.3.0
  • Updated dependencies
    • @ctx-core/array@26.14.1
    • @ctx-core/error@12.3.40

1.2.172

Patch Changes

  • svelte: ^4.1.2 -> ^4.2.0

1.2.171

Patch Changes

  • @ctx-core/array: ^26.12.45 -> ^26.13.0

1.2.170

Patch Changes

  • svelte: ^4.1.1 -> ^4.1.2

1.2.169

Patch Changes

  • @ctx-core/array: ^26.12.44 -> ^26.12.45
  • @ctx-core/object: ^28.0.3 -> ^28.0.4
  • Updated dependencies
    • @ctx-core/error@12.3.39

1.2.168

Patch Changes

  • @ctx-core/svg: ^18.2.105 -> ^18.2.106

1.2.167

Patch Changes

  • svelte: ^4.1.0 -> ^4.1.1

1.2.166

Patch Changes

  • @ctx-core/svg: ^18.2.104 -> ^18.2.105

1.2.165

Patch Changes

  • @ctx-core/svg: ^18.2.103 -> ^18.2.104

1.2.164

Patch Changes

  • @ctx-core/svg: ^18.2.102 -> ^18.2.103

1.2.163

Patch Changes

  • @ctx-core/svg: ^18.2.101 -> ^18.2.102

1.2.162

Patch Changes

  • svelte: ^4.0.2 -> ^4.0.5

1.2.161

Patch Changes

  • svelte: ^4.0.1 -> ^4.0.2

1.2.160

Patch Changes

  • @ctx-core/svg: ^18.2.100 -> ^18.2.101

1.2.159

Patch Changes

  • svelte: ^4.0.0 -> ^4.0.1

1.2.158

Patch Changes

  • @ctx-core/svg: ^18.2.99 -> ^18.2.100

1.2.157

Patch Changes

  • @ctx-core/svg: ^18.2.98 -> ^18.2.99

1.2.156

Patch Changes

  • svelte: ^3.59.2 -> ^4.0.0

1.2.155

Patch Changes

  • svelte: ^3.59.1 -> ^3.59.2

1.2.154

Patch Changes

  • @ctx-core/svg: ^18.2.97 -> ^18.2.98

1.2.153

Patch Changes

  • @ctx-core/object: ^28.0.2 -> ^28.0.3
  • Updated dependencies
    • @ctx-core/array@26.12.44
    • @ctx-core/error@12.3.38

1.2.152

Patch Changes

  • @ctx-core/svg: ^18.2.95 -> ^18.2.96

1.2.151

Patch Changes

  • @ctx-core/svg: ^18.2.94 -> ^18.2.95

1.2.150

Patch Changes

  • @ctx-core/object: ^28.0.1 -> ^28.0.2
  • Updated dependencies
    • @ctx-core/array@26.12.43
    • @ctx-core/error@12.3.37

1.2.149

Patch Changes

  • @ctx-core/svg: ^18.2.92 -> ^18.2.93

1.2.148

Patch Changes

  • @ctx-core/svg: ^18.2.91 -> ^18.2.92

1.2.147

Patch Changes

  • @ctx-core/svg: ^18.2.89 -> ^18.2.90

1.2.146

Patch Changes

  • @ctx-core/svg: ^18.2.88 -> ^18.2.89

1.2.145

Patch Changes

  • @ctx-core/svg: ^18.2.87 -> ^18.2.88

1.2.144

Patch Changes

  • @ctx-core/object: ^28.0.0 -> ^28.0.1
  • Updated dependencies
    • @ctx-core/array@26.12.42
    • @ctx-core/error@12.3.36

1.2.143

Patch Changes

  • Updated dependencies
    • @ctx-core/object@28.0.0
    • @ctx-core/array@26.12.41
    • @ctx-core/error@12.3.35

1.2.142

Patch Changes

  • @ctx-core/object: ^27.8.1 -> ^27.9.0
  • Updated dependencies
    • @ctx-core/array@26.12.40
    • @ctx-core/error@12.3.34

1.2.141

Patch Changes

  • @ctx-core/object: ^27.8.0 -> ^27.8.1
  • Updated dependencies
    • @ctx-core/array@26.12.39
    • @ctx-core/error@12.3.33

1.2.140

Patch Changes

  • @ctx-core/object: ^27.6.0 -> ^27.8.0
  • Updated dependencies
    • @ctx-core/array@26.12.38
    • @ctx-core/error@12.3.32

1.2.139

Patch Changes

  • @ctx-core/object: ^27.5.0 -> ^27.6.0
  • Updated dependencies
    • @ctx-core/array@26.12.37
    • @ctx-core/error@12.3.31

1.2.138

Patch Changes

  • @ctx-core/svg: ^18.2.80 -> ^18.2.81

1.2.137

Patch Changes

  • @ctx-core/svg: ^18.2.79 -> ^18.2.80

1.2.136

Patch Changes

  • @ctx-core/object: ^27.4.26 -> ^27.5.0
  • Updated dependencies
    • @ctx-core/array@26.12.36
    • @ctx-core/error@12.3.30

1.2.135

Patch Changes

  • @ctx-core/svg: ^18.2.77 -> ^18.2.78

1.2.134

Patch Changes

  • @ctx-core/svg: ^18.2.76 -> ^18.2.77

1.2.133

Patch Changes

  • @ctx-core/svg: ^18.2.75 -> ^18.2.76

1.2.132

Patch Changes

  • @ctx-core/svg: ^18.2.74 -> ^18.2.75

1.2.131

Patch Changes

  • @ctx-core/svg: ^18.2.73 -> ^18.2.74

1.2.130

Patch Changes

  • @ctx-core/object: ^27.4.25 -> ^27.4.26
  • @ctx-core/svg: ^18.2.71 -> ^18.2.72
  • Updated dependencies
    • @ctx-core/array@26.12.35
    • @ctx-core/error@12.3.29

1.2.129

Patch Changes

  • htmlparser2: ^8.0.2 -> ^9.0.0

1.2.128

Patch Changes

  • @ctx-core/svg: ^18.2.69 -> ^18.2.70

1.2.127

Patch Changes

  • svelte: ^3.59.0 -> ^3.59.1

1.2.126

Patch Changes

  • @ctx-core/svg: ^18.2.68 -> ^18.2.69

1.2.125

Patch Changes

  • svelte: ^3.58.0 -> ^3.59.0

1.2.124

Patch Changes

  • @ctx-core/svg: ^18.2.67 -> ^18.2.68

1.2.123

Patch Changes

  • @ctx-core/svg: ^18.2.66 -> ^18.2.67

1.2.122

Patch Changes

  • @ctx-core/object: ^27.4.24 -> ^27.4.25
  • Updated dependencies
    • @ctx-core/array@26.12.34
    • @ctx-core/error@12.3.28

1.2.121

Patch Changes

  • @ctx-core/svg: ^18.2.64 -> ^18.2.65

1.2.120

Patch Changes

  • @ctx-core/svg: ^18.2.63 -> ^18.2.64
  • @ctx-core/object: ^27.4.23 -> ^27.4.24
  • @ctx-core/array: ^26.12.32 -> ^26.12.33
  • Updated dependencies
    • @ctx-core/error@12.3.27

1.2.119

Patch Changes

  • @ctx-core/svg: ^18.2.62 -> ^18.2.63

1.2.118

Patch Changes

  • @ctx-core/monorepo: ^20.3.3 -> ^20.3.4
  • Updated dependencies
    • @ctx-core/array@26.12.32
    • @ctx-core/error@12.3.26
    • @ctx-core/object@27.4.23

1.2.117

Patch Changes

  • @ctx-core/monorepo: ^20.3.1 -> ^20.3.2
  • @ctx-core/dev-tools: 8.1.111 -> 8.1.112
  • @ctx-core/function: ^21.17.16 -> ^21.17.17
  • @ctx-core/queue: ^7.5.18 -> ^7.5.19
  • @ctx-core/git-tools: ^7.0.61 -> ^7.0.62
  • @ctx-core/build: 1.0.299 -> 1.0.300
  • @ctx-core/ctx-core-package-tools: ^8.0.191 -> ^8.0.192
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/array@26.12.31
    • @ctx-core/error@12.3.25
    • @ctx-core/object@27.4.22

1.2.116

Patch Changes

  • @ctx-core/monorepo: ^20.3.0 -> ^20.3.1
  • @ctx-core/git-tools: ^7.0.60 -> ^7.0.61
  • @ctx-core/function: ^21.17.15 -> ^21.17.16
  • @ctx-core/dev-tools: 8.1.110 -> 8.1.111
  • @ctx-core/build: 1.0.298 -> 1.0.299
  • @ctx-core/ctx-core-package-tools: ^8.0.190 -> ^8.0.191
  • @ctx-core/queue: ^7.5.17 -> ^7.5.18
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/array@26.12.30
    • @ctx-core/error@12.3.24
    • @ctx-core/object@27.4.21

1.2.115

Patch Changes

  • @ctx-core/queue: ^7.5.16 -> ^7.5.17
  • @ctx-core/dev-tools: 8.1.109 -> 8.1.110
  • @ctx-core/git-tools: ^7.0.59 -> ^7.0.60
  • @ctx-core/monorepo: ^20.2.3 -> ^20.3.0
  • @ctx-core/ctx-core-package-tools: ^8.0.189 -> ^8.0.190
  • @ctx-core/build: 1.0.297 -> 1.0.298
  • @ctx-core/function: ^21.17.14 -> ^21.17.15
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/array@26.12.29
    • @ctx-core/error@12.3.23
    • @ctx-core/object@27.4.20

1.2.114

Patch Changes

  • @ctx-core/git-tools: ^7.0.58 -> ^7.0.59
  • @ctx-core/queue: ^7.5.15 -> ^7.5.16
  • @ctx-core/build: 1.0.296 -> 1.0.297
  • @ctx-core/monorepo: ^20.2.2 -> ^20.2.3
  • @ctx-core/ctx-core-package-tools: ^8.0.188 -> ^8.0.189
  • @ctx-core/dev-tools: 8.1.108 -> 8.1.109
  • @ctx-core/function: ^21.17.13 -> ^21.17.14
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/array@26.12.28
    • @ctx-core/error@12.3.22
    • @ctx-core/object@27.4.19

1.2.113

Patch Changes

  • @ctx-core/dev-tools: 8.1.107 -> 8.1.108
  • @ctx-core/build: 1.0.295 -> 1.0.296
  • @ctx-core/git-tools: ^7.0.57 -> ^7.0.58
  • @ctx-core/ctx-core-package-tools: ^8.0.187 -> ^8.0.188
  • @ctx-core/monorepo: ^20.2.1 -> ^20.2.2
  • @ctx-core/function: ^21.17.12 -> ^21.17.13
  • @ctx-core/queue: ^7.5.13 -> ^7.5.15
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/array@26.12.27
    • @ctx-core/error@12.3.21
    • @ctx-core/object@27.4.18

1.2.112

Patch Changes

  • @ctx-core/dev-tools: 8.1.94 -> 8.1.107
  • @pnpm/list: ^9.0.2 -> ^9.0.3
  • @ctx-core/queue: ^7.5.1 -> ^7.5.13
  • pnpm: 8.2.0 -> 8.3.0
  • @ctx-core/build: 1.0.281 -> 1.0.295
  • @ctx-core/git-tools: ^7.0.45 -> ^7.0.57
  • @ctx-core/monorepo: ^20.1.0 -> ^20.2.1
  • @pnpm/sort-packages: ^5.0.0 -> ^5.0.1
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/array@26.12.26
    • @ctx-core/error@12.3.20
    • @ctx-core/object@27.4.17

1.2.98

Patch Changes

  • @ctx-core/svg: ^18.2.41 -> ^18.2.42

1.2.97

Patch Changes

  • @ctx-core/array: ^26.12.11 -> ^26.12.12
  • @ctx-core/object: ^27.4.3 -> ^27.4.4
  • Updated dependencies
    • @ctx-core/error@12.3.7

1.2.96

Patch Changes

  • @ctx-core/svg: ^18.2.39 -> ^18.2.40

1.2.95

Patch Changes

  • @ctx-core/object: ^27.4.2 -> ^27.4.3
  • @ctx-core/array: ^26.12.10 -> ^26.12.11
  • Updated dependencies
    • @ctx-core/error@12.3.6

1.2.94

Patch Changes

  • @ctx-core/object: ^27.4.1 -> ^27.4.2
  • @ctx-core/array: ^26.12.9 -> ^26.12.10
  • Updated dependencies
    • @ctx-core/error@12.3.5

1.2.93

Patch Changes

  • @ctx-core/svg: ^18.2.36 -> ^18.2.37

1.2.92

Patch Changes

  • @ctx-core/object: ^27.4.0 -> ^27.4.1
  • Updated dependencies
    • @ctx-core/array@26.12.9
    • @ctx-core/error@12.3.4

1.2.91

Patch Changes

  • @ctx-core/object: ^27.3.4 -> ^27.4.0
  • Updated dependencies
    • @ctx-core/array@26.12.8
    • @ctx-core/error@12.3.3

1.2.90

Patch Changes

  • @ctx-core/object: ^27.3.3 -> ^27.3.4
  • @ctx-core/array: ^26.12.6 -> ^26.12.7
  • Updated dependencies
    • @ctx-core/error@12.3.2

1.2.89

Patch Changes

  • @ctx-core/array: ^26.12.4 -> ^26.12.5
  • @ctx-core/object: ^27.3.1 -> ^27.3.2
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/array@26.12.6
    • @ctx-core/object@27.3.3
    • @ctx-core/error@12.3.1

1.2.88

Patch Changes

  • svelte: ^3.57.0 -> ^3.58.0

1.2.87

Patch Changes

  • @ctx-core/error: ^12.2.0 -> ^12.3.0

1.2.86

Patch Changes

  • @ctx-core/error: ^12.1.2 -> ^12.2.0

1.2.85

Patch Changes

  • @ctx-core/error: ^12.0.0 -> ^12.1.2

1.2.84

Patch Changes

  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/error@12.0.0

1.2.83

Patch Changes

  • @ctx-core/error: ^11.6.24 -> ^11.7.0

1.2.82

Patch Changes

  • @ctx-core/object: ^27.3.0 -> ^27.3.1
  • Updated dependencies
    • @ctx-core/array@26.12.4
    • @ctx-core/error@11.6.24

1.2.81

Patch Changes

  • htmlparser2: ^8.0.1 -> ^8.0.2
  • @ctx-core/object: ^27.2.0 -> ^27.3.0
  • Updated dependencies
    • @ctx-core/array@26.12.3
    • @ctx-core/error@11.6.23

1.2.80

Patch Changes

  • @ctx-core/object: ^27.1.7 -> ^27.2.0
  • Updated dependencies
    • @ctx-core/array@26.12.2
    • @ctx-core/error@11.6.22

1.2.79

Patch Changes

  • @ctx-core/array: ^26.12.0 -> ^26.12.1
  • @ctx-core/object: ^27.1.6 -> ^27.1.7
  • Updated dependencies
    • @ctx-core/error@11.6.21

1.2.78

Patch Changes

  • svelte-preprocess: ^5.0.2 -> ^5.0.3

1.2.77

Patch Changes

  • @ctx-core/svg: ^18.2.27 -> ^18.2.28

1.2.76

Patch Changes

  • svelte: ^3.56.0 -> ^3.57.0

1.2.75

Patch Changes

  • svelte-preprocess: ^5.0.1 -> ^5.0.2

1.2.74

Patch Changes

  • svelte: ^3.55.1 -> ^3.56.0

1.2.73

Patch Changes

  • @ctx-core/array: ^26.11.21 -> ^26.12.0

1.2.72

Patch Changes

  • @ctx-core/array: ^26.11.20 -> ^26.11.21

1.2.71

Patch Changes

  • @ctx-core/object: ^27.1.5 -> ^27.1.6
  • @ctx-core/array: ^26.11.19 -> ^26.11.20
  • Updated dependencies
    • @ctx-core/error@11.6.20

1.2.70

Patch Changes

  • @ctx-core/object: ^27.1.4 -> ^27.1.5
  • @ctx-core/array: ^26.11.18 -> ^26.11.19
  • Updated dependencies
    • @ctx-core/error@11.6.19

1.2.69

Patch Changes

  • @ctx-core/object: ^27.1.3 -> ^27.1.4
  • Updated dependencies
    • @ctx-core/array@26.11.18
    • @ctx-core/error@11.6.18

1.2.68

Patch Changes

  • @ctx-core/object: ^27.1.2 -> ^27.1.3
  • Updated dependencies
    • @ctx-core/array@26.11.17
    • @ctx-core/error@11.6.17

1.2.67

Patch Changes

  • @ctx-core/object: ^27.1.1 -> ^27.1.2
  • @ctx-core/array: ^26.11.15 -> ^26.11.16
  • Updated dependencies
    • @ctx-core/error@11.6.16

1.2.66

Patch Changes

  • @ctx-core/object: ^27.1.0 -> ^27.1.1
  • @ctx-core/array: ^26.11.14 -> ^26.11.15
  • Updated dependencies
    • @ctx-core/error@11.6.15

1.2.65

Patch Changes

  • @ctx-core/array: ^26.11.12 -> ^26.11.13
  • @ctx-core/object: ^27.0.0 -> ^27.1.0
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/array@26.11.14
    • @ctx-core/error@11.6.14

1.2.64

Patch Changes

  • @ctx-core/svg: ^18.2.17 -> ^18.2.18

1.2.63

Patch Changes

  • Updated dependencies
    • @ctx-core/object@27.0.0
    • @ctx-core/array@26.11.12
    • @ctx-core/error@11.6.13

1.2.62

Patch Changes

  • @ctx-core/error: ^11.6.11 -> ^11.6.12

1.2.61

Patch Changes

  • @ctx-core/error: ^11.6.10 -> ^11.6.11

1.2.60

Patch Changes

  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/object@26.0.0
    • @ctx-core/array@26.11.11
    • @ctx-core/error@11.6.10

1.2.59

Patch Changes

  • @ctx-core/object: ^25.2.0 -> ^25.2.1
  • Updated dependencies
    • @ctx-core/array@26.11.10
    • @ctx-core/error@11.6.9

1.2.58

Patch Changes

  • @ctx-core/object: ^25.1.0 -> ^25.2.0
  • Updated dependencies
    • @ctx-core/array@26.11.9
    • @ctx-core/error@11.6.8

1.2.57

Patch Changes

  • @ctx-core/object: ^25.0.1 -> ^25.1.0
  • Updated dependencies
    • @ctx-core/array@26.11.8
    • @ctx-core/error@11.6.7

1.2.56

Patch Changes

  • @ctx-core/svg: ^18.2.11 -> ^18.2.12

1.2.55

Patch Changes

  • @ctx-core/object: ^25.0.0 -> ^25.0.1
  • Updated dependencies
    • @ctx-core/array@26.11.7
    • @ctx-core/error@11.6.6

1.2.54

Patch Changes

  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/object@25.0.0
    • @ctx-core/array@26.11.6
    • @ctx-core/error@11.6.5

1.2.53

Patch Changes

  • @ctx-core/array: ^26.11.4 -> ^26.11.5

1.2.52

Patch Changes

  • @ctx-core/object: ^24.1.7 -> ^24.1.8
  • @ctx-core/array: ^26.11.3 -> ^26.11.4
  • Updated dependencies
    • @ctx-core/error@11.6.4

1.2.51

Patch Changes

  • @ctx-core/svg: ^18.2.5 -> ^18.2.6

1.2.50

Patch Changes

  • @ctx-core/array: ^26.11.2 -> ^26.11.3
  • @ctx-core/object: ^24.1.6 -> ^24.1.7
  • Updated dependencies
    • @ctx-core/error@11.6.3

1.2.49

Patch Changes

  • fix: throw new Error(error_message) instead of throw error_message

1.2.48

Patch Changes

  • @ctx-core/object: ^24.1.5 -> ^24.1.6
  • @ctx-core/array: ^26.11.1 -> ^26.11.2
  • Updated dependencies
    • @ctx-core/error@11.6.2

1.2.47

Patch Changes

  • @ctx-core/array: ^26.11.0 -> ^26.11.1
  • @ctx-core/error: ^11.6.0 -> ^11.6.1

1.2.46

Patch Changes

  • @ctx-core/array: ^26.10.2 -> ^26.11.0
  • Updated dependencies
    • @ctx-core/object@24.1.5

1.2.45

Patch Changes

  • @ctx-core/svg: ^18.2.1 -> ^18.2.2

1.2.44

Patch Changes

  • @ctx-core/array: ^26.10.1 -> ^26.10.2

1.2.43

Patch Changes

  • @ctx-core/svg: ^18.1.36 -> ^18.2.0

1.2.42

Patch Changes

  • @ctx-core/array: ^26.10.0 -> ^26.10.1

1.2.41

Patch Changes

  • @ctx-core/array: ^26.9.0 -> ^26.10.0

1.2.40

Patch Changes

  • @ctx-core/array: ^26.8.17 -> ^26.9.0

1.2.39

Patch Changes

  • @ctx-core/error: ^11.5.18 -> ^11.6.0

1.2.38

Patch Changes

  • @ctx-core/object: ^24.1.3 -> ^24.1.4
  • Updated dependencies
    • @ctx-core/array@26.8.17
    • @ctx-core/error@11.5.18

1.2.37

Patch Changes

  • @ctx-core/object: ^24.1.2 -> ^24.1.3
  • Updated dependencies
    • @ctx-core/array@26.8.16
    • @ctx-core/error@11.5.17

1.2.36

Patch Changes

  • @ctx-core/svg: ^18.1.30 -> ^18.1.31

1.2.35

Patch Changes

  • @ctx-core/svg: ^18.1.29 -> ^18.1.30

1.2.34

Patch Changes

  • @ctx-core/svg: ^18.1.28 -> ^18.1.29

1.2.33

Patch Changes

  • @ctx-core/svg: ^18.1.27 -> ^18.1.28
  • Updated dependencies
    • @ctx-core/array@26.8.15

1.2.32

Patch Changes

  • @ctx-core/error: ^11.5.15 -> ^11.5.16

1.2.31

Patch Changes

  • @ctx-core/object: ^24.1.1 -> ^24.1.2
  • Updated dependencies
    • @ctx-core/array@26.8.14
    • @ctx-core/error@11.5.15

1.2.30

Patch Changes

  • tsconfig.json: - importsNotUsedAsValues
  • Updated dependencies
    • @ctx-core/array@26.8.13
    • @ctx-core/error@11.5.14
    • @ctx-core/object@24.1.1

1.2.29

Patch Changes

  • @ctx-core/svg: ^18.1.24 -> ^18.1.25

1.2.28

Patch Changes

  • @ctx-core/object: ^24.0.0 -> ^24.0.1
  • Updated dependencies
    • @ctx-core/array@26.8.12
    • @ctx-core/error@11.5.13

1.2.27

Patch Changes

  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/object@24.0.0
    • @ctx-core/array@26.8.11
    • @ctx-core/error@11.5.12

1.2.26

Patch Changes

  • svelte-preprocess: ^5.0.0 -> ^5.0.1

1.2.25

Patch Changes

  • @ctx-core/svg: ^18.1.20 -> ^18.1.21

1.2.24

Patch Changes

  • svelte: ^3.55.0 -> ^3.55.1

1.2.23

Patch Changes

  • @ctx-core/object: ^23.0.1 -> ^23.1.0
  • Updated dependencies
    • @ctx-core/array@26.8.10
    • @ctx-core/error@11.5.11

1.2.22

Patch Changes

  • @ctx-core/object: ^23.0.0 -> ^23.0.1
  • Updated dependencies
    • @ctx-core/array@26.8.9
    • @ctx-core/error@11.5.10

1.2.21

Patch Changes

  • Updated dependencies
    • @ctx-core/object@23.0.0
    • @ctx-core/array@26.8.8
    • @ctx-core/error@11.5.9

1.2.20

Patch Changes

  • @ctx-core/object: ^22.9.1 -> ^22.10.0
  • Updated dependencies
    • @ctx-core/array@26.8.7
    • @ctx-core/error@11.5.8

1.2.19

Patch Changes

  • @ctx-core/object: ^22.9.0 -> ^22.9.1
  • Updated dependencies
    • @ctx-core/array@26.8.6
    • @ctx-core/error@11.5.7

1.2.18

Patch Changes

  • @ctx-core/object: ^22.8.2 -> ^22.9.0
  • Updated dependencies
    • @ctx-core/array@26.8.5
    • @ctx-core/error@11.5.6

1.2.17

Patch Changes

  • @ctx-core/object: ^22.8.0 -> ^22.8.2
  • Updated dependencies
    • @ctx-core/array@26.8.4
    • @ctx-core/error@11.5.5

1.2.16

Patch Changes

  • @ctx-core/object: ^22.6.0 -> ^22.7.0
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/array@26.8.3
    • @ctx-core/error@11.5.4
    • @ctx-core/object@22.8.0

1.2.15

Patch Changes

  • @ctx-core/svg: ^18.1.11 -> ^18.1.12

1.2.14

Patch Changes

  • @ctx-core/object: ^22.5.0 -> ^22.6.0
  • Updated dependencies
    • @ctx-core/array@26.8.2
    • @ctx-core/error@11.5.3

1.2.13

Patch Changes

  • @ctx-core/object: ^22.4.1 -> ^22.5.0
  • Updated dependencies
    • @ctx-core/array@26.8.1
    • @ctx-core/error@11.5.2

1.2.12

Patch Changes

  • @ctx-core/svg: ^18.1.8 -> ^18.1.9

1.2.11

Patch Changes

  • svelte: ^3.54.0 -> ^3.55.0

1.2.10

Patch Changes

  • svelte-preprocess: ^4.10.7 -> ^5.0.0

1.2.9

Patch Changes

  • svelte: ^3.53.1 -> ^3.54.0

1.2.8

Patch Changes

  • svelte: ^3.53.0 -> ^3.53.1

1.2.7

Patch Changes

  • svelte: ^3.52.0 -> ^3.53.0

1.2.6

Patch Changes

  • svelte: ^3.51.0 -> ^3.52.0

1.2.5

Patch Changes

  • svelte: ^3.50.1 -> ^3.51.0

1.2.4

Patch Changes

  • svelte: ^3.50.0 -> ^3.50.1

1.2.3

Patch Changes

  • svelte: ^3.49.0 -> ^3.50.0

1.2.2

Patch Changes

  • @ctx-core/array: ^26.6.0 -> ^26.7.0
  • Updated dependencies
    • @ctx-core/array@26.7.1

1.2.1

Patch Changes

  • fix: dependencies

1.2.0

Minor Changes

  • .js + .d.ts instead of .ts

1.1.41

Patch Changes

  • svelte: ^3.48.0 -> ^3.49.0

1.1.40

Patch Changes

  • "@ctx-core/array": "^26.6.0"

1.1.39

Patch Changes

  • @ctx-core/array: 26.5.2

1.1.38

Patch Changes

  • update dependencies

1.1.37

Patch Changes

  • @ctx-core/object: 22.2.0
  • Updated dependencies
    • @ctx-core/array@26.4.3
    • @ctx-core/error@11.4.8

1.1.36

Patch Changes

  • @ctx-core/array: 26.4.2

1.1.35

Patch Changes

  • update dependencies

1.1.34

Patch Changes

  • @ctx-core/array: ^26.2.4 -> ^26.3.0

1.1.33

Patch Changes

  • svelte2tsx: ^0.5.9 -> ^0.5.10

1.1.32

Patch Changes

  • update dependencies

1.1.31

Patch Changes

  • @ctx-core/array: ^26.2.2 -> ^26.2.3
  • @ctx-core/object: ^22.1.9 -> ^22.1.10
  • Updated dependencies
    • @ctx-core/error@11.4.7

1.1.30

Patch Changes

  • svelte: ^3.47.0 -> ^3.48.0

1.1.29

Patch Changes

  • update dependencies
  • Updated dependencies
    • @ctx-core/array@26.2.2
    • @ctx-core/error@11.4.6

1.1.28

Patch Changes

  • @ctx-core/function: 20.7.1
  • Updated dependencies
    • @ctx-core/array@26.2.1
    • @ctx-core/error@11.4.5
    • @ctx-core/object@22.1.8

1.1.27

Patch Changes

  • @ctx-core/array: 26.2.0
  • Updated dependencies
    • @ctx-core/error@11.4.4
    • @ctx-core/object@22.1.7

1.1.26

Patch Changes

  • htmlparser2: ^7.2.0 -> ^8.0.0
  • tslib: ^2.3.1 -> ^2.4.0

1.1.25

Patch Changes

  • fix: @ctx-core/* dependencies
  • Updated dependencies
    • @ctx-core/array@26.1.4
    • @ctx-core/error@11.4.3
    • @ctx-core/object@22.1.5

1.1.24

Patch Changes

  • package.json: exports: update
  • fix: package.json: exports: + default
  • Updated dependencies
    • @ctx-core/array@26.1.3
    • @ctx-core/error@11.4.2
    • @ctx-core/object@22.1.4

1.1.23

Patch Changes

  • update dependencies

1.1.22

Patch Changes

  • dom-serializer: ^1.3.2 -> ^2.0.0

1.1.21

Patch Changes

  • domhandler: ^4.3.1 -> ^5.0.1
  • svelte: ^3.46.6 -> ^3.47.0

1.1.20

Patch Changes

  • update dependencies

1.1.19

Patch Changes

  • version bump

1.1.18

Patch Changes

  • update dependencies

1.1.17

Patch Changes

  • update dependencies

1.1.16

Patch Changes

  • update dependencies

1.1.15

Patch Changes

  • update dependencies

1.1.14

Patch Changes

  • update dependencies
  • Updated dependencies
    • @ctx-core/array@24.0.2
    • @ctx-core/error@11.3.1

1.1.13

Patch Changes

  • update dependencies

1.1.12

Patch Changes

  • update dependencies

1.1.11

Patch Changes

  • 9c361b0c8: update dependencies

1.1.10

Patch Changes

  • update dependencies

1.1.9

Patch Changes

  • Updated dependencies
  • Updated dependencies
  • Updated dependencies
    • @ctx-core/array@24.0.0

1.1.8

Patch Changes

  • update dependencies

1.1.7

Patch Changes

  • 738370415: svelte: ^3.45.0 -> ^3.46.1

1.1.6

Patch Changes

  • update dependencies

1.1.5

Patch Changes

  • update dependencies

1.1.4

Patch Changes

  • sideEffects = false
  • Updated dependencies
    • @ctx-core/array@23.1.4
    • @ctx-core/error@11.1.23
    • @ctx-core/object@22.0.12

1.1.3

Patch Changes

  • @swc/core: ^1.2.125 -> ^1.2.127
  • svelte: ^3.44.3 -> ^3.45.0
  • Updated dependencies
    • @ctx-core/array@23.1.3
    • @ctx-core/error@11.1.22
    • @ctx-core/object@22.0.11

1.1.2

Patch Changes

  • update dependencies

1.1.1

Patch Changes

  • version bump
  • Updated dependencies
    • @ctx-core/array@23.1.2
    • @ctx-core/error@11.1.21
    • @ctx-core/object@22.0.10

1.1.0

Minor Changes

    • markup,markup,svg_preprocess: from @ctx-core/svg

1.0.11

Patch Changes

  • fix: vite integration: remove ts files

1.0.10

Patch Changes

  • fix: error TS6059: * is not under 'rootDir': package.json: types: ./dist/index.d.ts
  • Updated dependencies
    • @ctx-core/array@23.0.41
    • @ctx-core/object@22.0.8

1.0.9

Patch Changes

  • fix: npm publish: + .npmignore

1.0.8

Patch Changes

  • tsconfig.json: "target": "ES2021"
  • Updated dependencies
    • @ctx-core/array@23.0.40
    • @ctx-core/object@22.0.7

1.0.7

Patch Changes

  • package.json: "types": "./src/index.ts": better editing experience
  • Updated dependencies
    • @ctx-core/array@23.0.39
    • @ctx-core/object@22.0.6

1.0.6

Patch Changes

  • fix: build
  • Updated dependencies
    • @ctx-core/array@23.0.38
    • @ctx-core/object@22.0.5

1.0.5

Patch Changes

  • *.d.ts export
  • Updated dependencies
    • @ctx-core/array@23.0.37
    • @ctx-core/object@22.0.4

1.0.4

Patch Changes

  • fix: tsconfig.json: "rootDir": "."
  • Updated dependencies
    • @ctx-core/array@23.0.36
    • @ctx-core/object@22.0.3

1.0.3

Patch Changes

  • fix: package.json: exports
  • Updated dependencies
    • @ctx-core/array@23.0.35
    • @ctx-core/object@22.0.2

1.0.2

Patch Changes

  • package.json: svelte: ./dist/index.js
  • Updated dependencies
    • @ctx-core/array@23.0.34
    • @ctx-core/object@22.0.1

1.0.1

Patch Changes

  • svelte: 3.44.2 -> 3.44.3

1.0.0

Major Changes

  • initial release