Skip to content

Commit

Permalink
v0.0.34
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvianen committed Feb 4, 2024
1 parent d403198 commit f12dd0c
Show file tree
Hide file tree
Showing 11 changed files with 67 additions and 13 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.33
0.0.34
2 changes: 1 addition & 1 deletion dist/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "unit.gl",
"version": "0.0.33",
"version": "0.0.34",
"description": "Layout Engine.",
"keywords": [
"unit.gl",
Expand Down
7 changes: 7 additions & 0 deletions dist/scss/functions/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,10 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.


@forward "ratio";
@forward "arithmetic";
@forward "scale";
@forward "sequence";

2 changes: 1 addition & 1 deletion dist/scss/functions/_ratio.scss
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ $ratio: (
@return $base * pow($ratio, $increment);
}

$ratio: map-get($ratio, $ratio-name);
// $ratio: map-get($ratio, $ratio-name);


// body {
Expand Down
1 change: 1 addition & 0 deletions dist/scss/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
@use "sass:math";

@forward "variables";
@forward "functions";
@forward "mixins";

@forward "reset";
Expand Down
27 changes: 23 additions & 4 deletions dist/scss/variables/_layer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,31 @@
/// Layer Map
/// Z-index Layers
$layers: (
'guides': 1000,

// Guides
"guides": 9998,
"guide_baseline": 3000,
"guide_graph": 3100,

// Overlays
"modal": 7000,

// Interface
"ribbon": 5000,
"interface": 4000,
"control": 3000,

// Content
"content": 2000,

// Canvas
"canvas": -1000,
// "canvas": 5000,

//
"max": 9999,
"mid": 0,
"min": -9999,
"max": 9999,
"mid": 0,
"min": -9999,

// Add more layers as needed

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "unit.gl",
"description": "Layout Engine.",
"version": "0.0.33",
"version": "0.0.34",
"config": {
"version_short": "0.0"
},
Expand Down
7 changes: 7 additions & 0 deletions src/scss/functions/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,10 @@
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.


@forward "ratio";
@forward "arithmetic";
@forward "scale";
@forward "sequence";

2 changes: 1 addition & 1 deletion src/scss/functions/_ratio.scss
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ $ratio: (
@return $base * pow($ratio, $increment);
}

$ratio: map-get($ratio, $ratio-name);
// $ratio: map-get($ratio, $ratio-name);


// body {
Expand Down
1 change: 1 addition & 0 deletions src/scss/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
@use "sass:math";

@forward "variables";
@forward "functions";
@forward "mixins";

@forward "reset";
Expand Down
27 changes: 23 additions & 4 deletions src/scss/variables/_layer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,31 @@
/// Layer Map
/// Z-index Layers
$layers: (
'guides': 1000,

// Guides
"guides": 9998,
"guide_baseline": 3000,
"guide_graph": 3100,

// Overlays
"modal": 7000,

// Interface
"ribbon": 5000,
"interface": 4000,
"control": 3000,

// Content
"content": 2000,

// Canvas
"canvas": -1000,
// "canvas": 5000,

//
"max": 9999,
"mid": 0,
"min": -9999,
"max": 9999,
"mid": 0,
"min": -9999,

// Add more layers as needed

Expand Down

0 comments on commit f12dd0c

Please sign in to comment.